N64: Move the dirty hack from LoadState to the constructor instead to avoid problems with states saved on frame 0.

This commit is contained in:
pjgat09 2015-03-17 00:11:08 +00:00
parent 6783978f49
commit c2dd59aa3a
2 changed files with 8 additions and 11 deletions

View File

@ -144,6 +144,14 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
RefreshMemoryCallbacks();
api.AsyncExecuteEmulator();
// Hack: Saving a state on frame 0 has been shown to not be sync stable. Advance past that frame to avoid the problem.
// Advancing 2 frames was chosen to deal with a problem with the dynamic recompiler. The dynarec seems to take 2 frames to set
// things up correctly. If a state is loaded on frames 0 or 1 mupen tries to access null pointers and the emulator crashes, so instead
// advance past both to again avoid the problem.
api.frame_advance();
api.frame_advance();
SetControllerButtons();
}

View File

@ -600,17 +600,6 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64.NativeApi
public void LoadState(byte[] buffer)
{
// This is a dirty hack...
// When using the dynamic recompiler if a state is loaded too early some pointers are not set up yet, so mupen
// tries to access null pointers and the emulator crashes. It seems like it takes 2 frames to fully set up the recompiler,
// so if two frames haven't been run yet, run them, then load the state.
if (bizhawkCore.Frame < 2)
{
frame_advance();
frame_advance();
}
m64pCoreLoadState(buffer);
}