Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated to build in the latest devkitpro environment. #1

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion source/libelm.c
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,8 @@ static void _ELM_fileinfo_to_stat(const TCHAR* path,const FILINFO* fi,struct sta
st->st_rdev=st->st_dev;
st->st_size=fi->fsize;
st->st_mtime=_ELM_filetime_to_time(fi->ftime,fi->fdate);
st->st_spare1=fi->fattrib;
st->st_spare4[0]=fi->fattrib;
st->st_spare4[1]=fi->fattrib;
}

static int _ELM_chk_mounted(int disk)
Expand Down
2 changes: 0 additions & 2 deletions source/sdmmc/sdmmc.c
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@
#define TRUE 1
#define FALSE 0

#define bool int

#define NO_INLINE __attribute__ ((noinline))

#define RGB(r,g,b) (r<<24|b<<16|g<<8|r)
Expand Down