mirror of
https://github.com/melonDS-emu/melonDS.git
synced 2025-07-22 22:01:06 -06:00
fix build with JIT disabled and set default JIT maxblock size to 32
This commit is contained in:
@ -173,6 +173,7 @@ void ARM::DoSavestate(Savestate* file)
|
||||
file->VarArray(R_IRQ, 3*sizeof(u32));
|
||||
file->VarArray(R_UND, 3*sizeof(u32));
|
||||
file->Var32(&CurInstr);
|
||||
#ifdef JIT_ENABLED
|
||||
if (!file->Saving && Config::JIT_Enable)
|
||||
{
|
||||
// hack, the JIT doesn't really pipeline
|
||||
@ -180,6 +181,7 @@ void ARM::DoSavestate(Savestate* file)
|
||||
// loaded while running the interpreter
|
||||
FillPipeline();
|
||||
}
|
||||
#endif
|
||||
file->VarArray(NextInstr, 2*sizeof(u32));
|
||||
|
||||
file->Var32(&ExceptionBase);
|
||||
|
Reference in New Issue
Block a user