shithub: cstory

Download patch

ref: c398ec7c25a4008428a9f1fae90d70f71355391f
parent: 80725016f7190bb55bde96fbe72c7e145de2d67f
author: Clownacy <Clownacy@users.noreply.github.com>
date: Sun Oct 11 10:42:27 EDT 2020

Cleanup and enable New3DS speedup

--- a/src/Backends/Platform/3DS.cpp
+++ b/src/Backends/Platform/3DS.cpp
@@ -17,14 +17,12 @@
 	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
@@ -38,8 +36,6 @@
 void Backend_Deinit(void)
 {
 	romfsExit();
-
-//	gspLcdExit();
 
 	gfxExit();