From fe1bfb0475c988d78c1d66a6bf798319d92d4858 Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Wed, 25 Sep 2019 20:31:16 -0600 Subject: [PATCH] Correct box art size for MS/GG --- quickmenu/arm9/source/main.cpp | 4 ++-- romsel_dsimenutheme/arm9/source/fileBrowse.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/quickmenu/arm9/source/main.cpp b/quickmenu/arm9/source/main.cpp index 81e653a2c0..bf0b2c3ab9 100644 --- a/quickmenu/arm9/source/main.cpp +++ b/quickmenu/arm9/source/main.cpp @@ -1230,10 +1230,10 @@ int main(int argc, char **argv) { boxArtType = 1; } else if (extention(filename, ".sms")) { bnrRomType = 5; - boxArtType = 0; + boxArtType = 2; } else if (extention(filename, ".gg")) { bnrRomType = 6; - boxArtType = 0; + boxArtType = 2; } else if (extention(filename, ".gen")) { bnrRomType = 7; boxArtType = 2; diff --git a/romsel_dsimenutheme/arm9/source/fileBrowse.cpp b/romsel_dsimenutheme/arm9/source/fileBrowse.cpp index 4885386ab2..f1f6ce43db 100644 --- a/romsel_dsimenutheme/arm9/source/fileBrowse.cpp +++ b/romsel_dsimenutheme/arm9/source/fileBrowse.cpp @@ -1332,10 +1332,10 @@ void getFileInfo(SwitchState scrn, vector> dirContents, bool re boxArtType[i] = 1; } else if (extention(std_romsel_filename, ".sms")) { bnrRomType[i] = 5; - boxArtType[i] = 0; + boxArtType[i] = 2; } else if (extention(std_romsel_filename, ".gg")) { bnrRomType[i] = 6; - boxArtType[i] = 0; + boxArtType[i] = 2; } else if (extention(std_romsel_filename, ".gen")) { bnrRomType[i] = 7; boxArtType[i] = 2;