mirror of
https://github.com/CTurt/dsgmLib.git
synced 2025-06-19 07:05:37 -04:00
Rename DSGM_InitNitro
It does Nitro and FAT so FS is more appropriate
This commit is contained in:
parent
b69dfc24e4
commit
3c49209f7d
@ -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);
|
||||||
|
@ -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");
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user