From 05a6296de81d1e5f0e5bef7e8c2a05365f6bb719 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Mon, 16 Dec 2024 21:09:00 -0700 Subject: [PATCH] Derp fix --- romsel_dsimenutheme/arm9/source/perGameSettings.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/romsel_dsimenutheme/arm9/source/perGameSettings.cpp b/romsel_dsimenutheme/arm9/source/perGameSettings.cpp index b801254e5e..cc984b4dbe 100644 --- a/romsel_dsimenutheme/arm9/source/perGameSettings.cpp +++ b/romsel_dsimenutheme/arm9/source/perGameSettings.cpp @@ -663,7 +663,7 @@ void perGameSettings (std::string filename, bool* dsiBinariesFound, bool* dsiBin perGameOp[perGameOps] = 14; // Game Loader } if (bootstrapEnabled) { - if (!ms().secondaryDevice && (romSize > (unitCode[CURPOS] == 3 ? romSizeLimitTwl : romSizeLimit)) && !blacklisted_asyncCardRead) { + if (!ms().secondaryDevice && (romSize > (unitCode[CURPOS] > 0 ? romSizeLimitTwl : romSizeLimit)) && !blacklisted_asyncCardRead) { perGameOps++; perGameOp[perGameOps] = 12; // Async Card Read }