Skip to content

Commit

Permalink
Display .md extension on flashcards for PicoDriveTWL
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Jun 13, 2024
1 parent 9b3d040 commit 607b1e1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion romsel_aktheme/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1331,7 +1331,7 @@ int akTheme(void) {
}
}

if (!ms().secondaryDevice) {
if (!ms().secondaryDevice || ms().mdEmulator == 2) {
extensionList.emplace_back(".md"); // Sega Mega Drive
}

Expand Down
2 changes: 1 addition & 1 deletion romsel_dsimenutheme/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1270,7 +1270,7 @@ int dsiMenuTheme(void) {
}
}

if (!ms().secondaryDevice) {
if (!ms().secondaryDevice || ms().mdEmulator == 2) {
extensionList.emplace_back(".md"); // Sega Mega Drive
}

Expand Down
2 changes: 1 addition & 1 deletion romsel_r4theme/arm9/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1482,7 +1482,7 @@ int r4Theme(void) {
}
}

if (!ms().secondaryDevice) {
if (!ms().secondaryDevice || ms().mdEmulator == 2) {
extensionList.emplace_back(".md"); // Sega Mega Drive
}

Expand Down

0 comments on commit 607b1e1

Please sign in to comment.