Rename DSGM_InitNitro

It does Nitro and FAT so FS is more appropriate
This commit is contained in:
CTurt 2014-11-29 10:13:02 +00:00
parent b69dfc24e4
commit 3c49209f7d
2 changed files with 2 additions and 2 deletions

View File

@ -71,6 +71,6 @@ void DSGM_Log(bool wait, char *text, ...);
void DSGM_InitGFX(void); void DSGM_InitGFX(void);
void DSGM_InitCustomGFX(bool topScreenDrawable, bool bottomScreenDrawable, bool main3D); void DSGM_InitCustomGFX(bool topScreenDrawable, bool bottomScreenDrawable, bool main3D);
void DSGM_InitRand(void); void DSGM_InitRand(void);
void DSGM_InitNitro(void); void DSGM_InitFS(void);
void DSGM_Update(void); void DSGM_Update(void);

View File

@ -83,7 +83,7 @@ void DSGM_InitRand(void) {
srand(time(NULL)); srand(time(NULL));
} }
void DSGM_InitNitro(void) { void DSGM_InitFS(void) {
if(!nitroFSInit(NULL)) { if(!nitroFSInit(NULL)) {
DSGM_Debug("NitroFS failed\n"); DSGM_Debug("NitroFS failed\n");
} }