actually hook this up

This commit is contained in:
Arisotura
2020-05-17 04:37:44 +02:00
parent 60ba163f08
commit 17d30e91f0
8 changed files with 75 additions and 20 deletions

View File

@ -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");