mame: finally make mem reading work with frame advance
proof that it's a good idea to go to bed with a problem, because your brain keeps solving it while you're sleeping. so when you wake up, it presents you the solution that actually works.
This commit is contained in:
parent
7ce9a56dda
commit
5c2e6d35c3
|
@ -155,6 +155,11 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
|
|||
_paused = false;
|
||||
_frameDone = false;
|
||||
|
||||
if (_memAccess)
|
||||
{
|
||||
_mamePeriodicComplete.WaitOne();
|
||||
}
|
||||
|
||||
for (; _frameDone == false;)
|
||||
{
|
||||
_mameFrameComplete.WaitOne();
|
||||
|
@ -638,7 +643,7 @@ namespace BizHawk.Emulation.Cores.Arcades.MAME
|
|||
if (!_frameDone && !_paused)
|
||||
{
|
||||
_memAccess = false;
|
||||
break;
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue