mirror of https://github.com/mgba-emu/mgba.git
Wii: Back out fat initialization changes
This commit is contained in:
parent
843413021b
commit
4bc603db70
|
@ -209,7 +209,7 @@ void GBAConfigDirectory(char* out, size_t outLength) {
|
||||||
sceIoMkdir(out, 0777);
|
sceIoMkdir(out, 0777);
|
||||||
#elif defined(GEKKO)
|
#elif defined(GEKKO)
|
||||||
UNUSED(portable);
|
UNUSED(portable);
|
||||||
snprintf(out, outLength, "sd:/%s", projectName);
|
snprintf(out, outLength, "/%s", projectName);
|
||||||
mkdir(out, 0777);
|
mkdir(out, 0777);
|
||||||
#elif defined(_3DS)
|
#elif defined(_3DS)
|
||||||
snprintf(out, outLength, "/%s", projectName);
|
snprintf(out, outLength, "/%s", projectName);
|
||||||
|
|
|
@ -186,7 +186,7 @@ int main() {
|
||||||
|
|
||||||
font = GUIFontCreate();
|
font = GUIFontCreate();
|
||||||
|
|
||||||
fatInit(4, false);
|
fatInitDefault();
|
||||||
|
|
||||||
rumble.setRumble = _setRumble;
|
rumble.setRumble = _setRumble;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue