From c398ec7c25a4008428a9f1fae90d70f71355391f Mon Sep 17 00:00:00 2001 From: Clownacy Date: Sun, 11 Oct 2020 14:42:27 +0100 Subject: [PATCH] Cleanup and enable New3DS speedup --- src/Backends/Platform/3DS.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/Backends/Platform/3DS.cpp b/src/Backends/Platform/3DS.cpp index 3ac3f7bb..70f5f593 100644 --- a/src/Backends/Platform/3DS.cpp +++ b/src/Backends/Platform/3DS.cpp @@ -17,14 +17,12 @@ bool Backend_Init(void (*drag_and_drop_callback)(const char *path), void (*windo gfxInitDefault(); consoleInit(GFX_BOTTOM, NULL); -// gspLcdInit(); - -// GSPLCD_PowerOffBacklight(GSPLCD_SCREEN_BOTTOM); - Result rc = romfsInit(); if (rc == 0) { + osSetSpeedupEnable(true); // Enable New3DS speedup, since this doesn't run very well on Old3DSs yet + return true; } else @@ -39,8 +37,6 @@ void Backend_Deinit(void) { romfsExit(); -// gspLcdExit(); - gfxExit(); hidExit();