mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-23 14:19:55 -06:00
savestate shito: fix compile errors.
still far from being finished, so avoid using unless you want to spawn blackholes or some pretty bad shit.
This commit is contained in:
@ -161,12 +161,12 @@ void ARM::Reset()
|
||||
JumpTo(ExceptionBase);
|
||||
}
|
||||
|
||||
void ARM::Savestate(Savestate* file)
|
||||
void ARM::DoSavestate(Savestate* file)
|
||||
{
|
||||
file->Section(Num ? "ARM7" : "ARM9");
|
||||
file->Section((char*)(Num ? "ARM7" : "ARM9"));
|
||||
|
||||
file->Var32(&(u32)Cycles);
|
||||
file->Var32(&(u32)CyclesToRun);
|
||||
file->Var32((u32*)&Cycles);
|
||||
file->Var32((u32*)&CyclesToRun);
|
||||
file->Var32(&Halted);
|
||||
|
||||
file->VarArray(R, 16*sizeof(u32));
|
||||
|
Reference in New Issue
Block a user