Skip to content

Commit 607b1e1

Browse files
committed
Display .md extension on flashcards for PicoDriveTWL
1 parent 9b3d040 commit 607b1e1

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
@@ -1331,7 +1331,7 @@ int akTheme(void) {
13311331
}
13321332
}
13331333

1334-
if (!ms().secondaryDevice) {
1334+
if (!ms().secondaryDevice || ms().mdEmulator == 2) {
13351335
extensionList.emplace_back(".md"); // Sega Mega Drive
13361336
}
13371337

romsel_dsimenutheme/arm9/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1270,7 +1270,7 @@ int dsiMenuTheme(void) {
12701270
}
12711271
}
12721272

1273-
if (!ms().secondaryDevice) {
1273+
if (!ms().secondaryDevice || ms().mdEmulator == 2) {
12741274
extensionList.emplace_back(".md"); // Sega Mega Drive
12751275
}
12761276

romsel_r4theme/arm9/source/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1482,7 +1482,7 @@ int r4Theme(void) {
14821482
}
14831483
}
14841484

1485-
if (!ms().secondaryDevice) {
1485+
if (!ms().secondaryDevice || ms().mdEmulator == 2) {
14861486
extensionList.emplace_back(".md"); // Sega Mega Drive
14871487
}
14881488

0 commit comments

Comments
 (0)