From 607b1e17ed2cdee4adf7be88798df44d2b7b0b9b Mon Sep 17 00:00:00 2001 From: RocketRobz Date: Wed, 12 Jun 2024 20:28:37 -0600 Subject: [PATCH] Display `.md` extension on flashcards for PicoDriveTWL --- romsel_aktheme/arm9/source/main.cpp | 2 +- romsel_dsimenutheme/arm9/source/main.cpp | 2 +- romsel_r4theme/arm9/source/main.cpp | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/romsel_aktheme/arm9/source/main.cpp b/romsel_aktheme/arm9/source/main.cpp index bc42dee6b0..c7f50837c7 100644 --- a/romsel_aktheme/arm9/source/main.cpp +++ b/romsel_aktheme/arm9/source/main.cpp @@ -1331,7 +1331,7 @@ int akTheme(void) { } } - if (!ms().secondaryDevice) { + if (!ms().secondaryDevice || ms().mdEmulator == 2) { extensionList.emplace_back(".md"); // Sega Mega Drive } diff --git a/romsel_dsimenutheme/arm9/source/main.cpp b/romsel_dsimenutheme/arm9/source/main.cpp index e0a09957db..aa33f9e77a 100644 --- a/romsel_dsimenutheme/arm9/source/main.cpp +++ b/romsel_dsimenutheme/arm9/source/main.cpp @@ -1270,7 +1270,7 @@ int dsiMenuTheme(void) { } } - if (!ms().secondaryDevice) { + if (!ms().secondaryDevice || ms().mdEmulator == 2) { extensionList.emplace_back(".md"); // Sega Mega Drive } diff --git a/romsel_r4theme/arm9/source/main.cpp b/romsel_r4theme/arm9/source/main.cpp index 56b86ecbb6..1c79aba4ae 100644 --- a/romsel_r4theme/arm9/source/main.cpp +++ b/romsel_r4theme/arm9/source/main.cpp @@ -1482,7 +1482,7 @@ int r4Theme(void) { } } - if (!ms().secondaryDevice) { + if (!ms().secondaryDevice || ms().mdEmulator == 2) { extensionList.emplace_back(".md"); // Sega Mega Drive }