Skip to content

Commit f049ab0

Browse files
committed
Fix .png files not appearing if Multimedia add-on is installed
1 parent fa796bd commit f049ab0

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

romsel_aktheme/arm9/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1259,7 +1259,7 @@ int akTheme(void) {
12591259
".png" // Portable Network Graphics
12601260
};
12611261

1262-
for (int i = 0; i < 5; i++) {
1262+
for (int i = 0; i < 6; i++) {
12631263
extensionList.emplace_back(extensionListMedia[i]);
12641264
}
12651265
}

romsel_dsimenutheme/arm9/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1221,7 +1221,7 @@ int dsiMenuTheme(void) {
12211221
".png" // Portable Network Graphics
12221222
};
12231223

1224-
for (int i = 0; i < 5; i++) {
1224+
for (int i = 0; i < 6; i++) {
12251225
extensionList.emplace_back(extensionListMedia[i]);
12261226
}
12271227
}

romsel_r4theme/arm9/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1416,7 +1416,7 @@ int r4Theme(void) {
14161416
".png" // Portable Network Graphics
14171417
};
14181418

1419-
for (int i = 0; i < 5; i++) {
1419+
for (int i = 0; i < 6; i++) {
14201420
extensionList.emplace_back(extensionListMedia[i]);
14211421
}
14221422
}

0 commit comments

Comments
 (0)