Cleanup and enable New3DS speedup

This commit is contained in:
Clownacy 2020-10-11 14:42:27 +01:00
parent 80725016f7
commit c398ec7c25

View file

@ -17,14 +17,12 @@ bool Backend_Init(void (*drag_and_drop_callback)(const char *path), void (*windo
gfxInitDefault(); gfxInitDefault();
consoleInit(GFX_BOTTOM, NULL); consoleInit(GFX_BOTTOM, NULL);
// gspLcdInit();
// GSPLCD_PowerOffBacklight(GSPLCD_SCREEN_BOTTOM);
Result rc = romfsInit(); Result rc = romfsInit();
if (rc == 0) if (rc == 0)
{ {
osSetSpeedupEnable(true); // Enable New3DS speedup, since this doesn't run very well on Old3DSs yet
return true; return true;
} }
else else
@ -39,8 +37,6 @@ void Backend_Deinit(void)
{ {
romfsExit(); romfsExit();
// gspLcdExit();
gfxExit(); gfxExit();
hidExit(); hidExit();