mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-24 14:49:53 -06:00
pass savefile name to NDS::LoadROM() instead of having the core generate it.
This commit is contained in:
@ -542,9 +542,9 @@ bool DoSavestate(Savestate* file)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool LoadROM(const char* path, bool direct)
|
||||
bool LoadROM(const char* path, const char* sram, bool direct)
|
||||
{
|
||||
if (NDSCart::LoadROM(path, direct))
|
||||
if (NDSCart::LoadROM(path, sram, direct))
|
||||
{
|
||||
Running = true;
|
||||
return true;
|
||||
|
Reference in New Issue
Block a user