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;