Reset GBA cartridge state when loading a new ROM
This commit is contained in:
parent
91bf62a1d4
commit
48a8a25548
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue