MB: fix for SSI263/SC01 in debugger's 'gg' mode (fixes #958)

This commit is contained in:
tomcw 2021-05-29 21:53:18 +01:00
parent 7f0c028250
commit 0ca972954e
1 changed files with 5 additions and 0 deletions

View File

@ -394,9 +394,14 @@ void SSI263::Update(void)
#endif
if (m_phonemeAccurateLengthRemaining)
{
m_phonemeCompleteByFullSpeed = true; // Let UpdateAccurateLength() call UpdateIRQ()
m_lastUpdateCycle = MB_GetLastCumulativeCycles(); // Set m_lastUpdateCycle, otherwise UpdateAccurateLength() just early-returns!
}
else
{
UpdateIRQ();
}
}
m_updateWasFullSpeed = true;