Fixed the issue of GnG not running on option B hardware
This commit is contained in:
parent
8eb61f03bc
commit
e748a0687e
1 changed files with 8 additions and 7 deletions
15
src/main.cpp
15
src/main.cpp
|
@ -596,14 +596,15 @@ void UpdateScreen()
|
||||||
}
|
}
|
||||||
if (emulating != IEC_COMMANDS)
|
if (emulating != IEC_COMMANDS)
|
||||||
{
|
{
|
||||||
//refreshUartStatusDisplay =
|
// Putting the semaphore around diskCaddy.Update() keeps this core awake and this breaks emulation on option B hardware.
|
||||||
#if not defined(EXPERIMENTALZERO)
|
// Don't know why. Disabling for now.
|
||||||
core0RefreshingScreen.Acquire();
|
//#if not defined(EXPERIMENTALZERO)
|
||||||
#endif
|
// core0RefreshingScreen.Acquire();
|
||||||
|
//#endif
|
||||||
diskCaddy.Update();
|
diskCaddy.Update();
|
||||||
#if not defined(EXPERIMENTALZERO)
|
//#if not defined(EXPERIMENTALZERO)
|
||||||
core0RefreshingScreen.Release();
|
// core0RefreshingScreen.Release();
|
||||||
#endif
|
//#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
//if (options.GetSupportUARTInput())
|
//if (options.GetSupportUARTInput())
|
||||||
|
|
Loading…
Reference in a new issue