Skip to content

Commit

Permalink
Correct box art size for MS/GG
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Sep 26, 2019
1 parent 75a7bbe commit fe1bfb0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions quickmenu/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions romsel_dsimenutheme/arm9/source/fileBrowse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1332,10 +1332,10 @@ void getFileInfo(SwitchState scrn, vector<vector<DirEntry>> 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;
Expand Down

0 comments on commit fe1bfb0

Please sign in to comment.