mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
actually hook this up
This commit is contained in:
@ -416,7 +416,7 @@ void Reset()
|
||||
RunningGame = false;
|
||||
LastSysClockCycles = 0;
|
||||
|
||||
f = Platform::OpenLocalFile("bios9.bin", "rb");
|
||||
f = Platform::OpenLocalFile(Config::BIOS9Path, "rb");
|
||||
if (!f)
|
||||
{
|
||||
printf("ARM9 BIOS not found\n");
|
||||
@ -433,7 +433,7 @@ void Reset()
|
||||
fclose(f);
|
||||
}
|
||||
|
||||
f = Platform::OpenLocalFile("bios7.bin", "rb");
|
||||
f = Platform::OpenLocalFile(Config::BIOS7Path, "rb");
|
||||
if (!f)
|
||||
{
|
||||
printf("ARM7 BIOS not found\n");
|
||||
|
Reference in New Issue
Block a user