From 3c49209f7dbb142ecd39bfbdf9a94f7a4617a79f Mon Sep 17 00:00:00 2001 From: CTurt Date: Sat, 29 Nov 2014 10:13:02 +0000 Subject: [PATCH] Rename DSGM_InitNitro It does Nitro and FAT so FS is more appropriate --- include/DSGM.h | 2 +- source/DSGM.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/DSGM.h b/include/DSGM.h index 5fb9011..d97368f 100644 --- a/include/DSGM.h +++ b/include/DSGM.h @@ -71,6 +71,6 @@ void DSGM_Log(bool wait, char *text, ...); void DSGM_InitGFX(void); void DSGM_InitCustomGFX(bool topScreenDrawable, bool bottomScreenDrawable, bool main3D); void DSGM_InitRand(void); -void DSGM_InitNitro(void); +void DSGM_InitFS(void); void DSGM_Update(void); diff --git a/source/DSGM.c b/source/DSGM.c index 4d412c7..ef28b35 100644 --- a/source/DSGM.c +++ b/source/DSGM.c @@ -83,7 +83,7 @@ void DSGM_InitRand(void) { srand(time(NULL)); } -void DSGM_InitNitro(void) { +void DSGM_InitFS(void) { if(!nitroFSInit(NULL)) { DSGM_Debug("NitroFS failed\n"); }