Reset GBA cartridge state when loading a new ROM

This commit is contained in:
Raphaël Zumer 2019-12-08 17:13:56 -05:00
parent 91bf62a1d4
commit 48a8a25548
1 changed files with 5 additions and 0 deletions

View File

@ -156,6 +156,11 @@ bool LoadROM(const char* path, const char* sram)
return false;
}
if (CartInserted)
{
Reset();
}
fseek(f, 0, SEEK_END);
u32 len = (u32)ftell(f);