mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-06-28 09:59:41 -06:00
BIOS/NAND UI changes (#1587)
* Remember the last folder for BIOS files Add .mmc to the list of NAND filename extensions * Add .sd file extension for SD images * Fix UI code according to the review --------- Co-authored-by: yeah-its-serena <32610623+yeah-its-serena@users.noreply.github.com>
This commit is contained in:
@ -122,6 +122,7 @@ int MicInputType;
|
||||
std::string MicWavPath;
|
||||
|
||||
std::string LastROMFolder;
|
||||
std::string LastBIOSFolder;
|
||||
|
||||
std::string RecentROMList[10];
|
||||
|
||||
@ -294,6 +295,7 @@ ConfigEntry ConfigFile[] =
|
||||
{"MicWavPath", 2, &MicWavPath, (std::string)"", false},
|
||||
|
||||
{"LastROMFolder", 2, &LastROMFolder, (std::string)"", true},
|
||||
{"LastBIOSFolder", 2, &LastBIOSFolder, (std::string)"", true},
|
||||
|
||||
{"RecentROM_0", 2, &RecentROMList[0], (std::string)"", true},
|
||||
{"RecentROM_1", 2, &RecentROMList[1], (std::string)"", true},
|
||||
|
Reference in New Issue
Block a user