fix mupen dll not to have 100 frame hack crash; change c# side to more visibly hang (the frame counter stops, so the condition can be detected)
This commit is contained in:
parent
2eade372fd
commit
1961d8b8d0
|
@ -256,7 +256,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
|
|||
LagCount++;
|
||||
}
|
||||
|
||||
Frame++;
|
||||
if(!api.IsCrashed)
|
||||
Frame++;
|
||||
}
|
||||
|
||||
public string SystemId { get { return "N64"; } }
|
||||
|
|
|
@ -572,6 +572,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64.NativeApi
|
|||
|
||||
volatile bool emulator_running = false;
|
||||
|
||||
public bool IsCrashed => !emulator_running;
|
||||
|
||||
/// <summary>
|
||||
/// Starts executing the emulator asynchronously
|
||||
/// Waits until the emulator booted up and than returns
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue