minor revision to previous checkin

This commit is contained in:
dinkc64 2014-06-25 19:57:49 +00:00
parent 342f6114aa
commit edf9ba20fd
1 changed files with 9 additions and 4 deletions

View File

@ -567,10 +567,15 @@ static void OnActivateApp(HWND hwnd, BOOL fActivate, DWORD /* dwThreadId */)
static void PausedRedraw(void)
{
if (bVidOkay && (bRunPause || !bDrvOkay)) { // Show the message even if paused. - dink
VidRedraw();
VidPaint(0);
}
if (bVidOkay && (bRunPause || !bDrvOkay)) { // Show the message even if paused. - dink
INT16 *pBtemp = pBurnSoundOut;
pBurnSoundOut = NULL; // Mute the sound as VidRedraw() draws the frame
VidRedraw();
VidPaint(0);
pBurnSoundOut = pBtemp;
}
}
static void OnPaint(HWND hWnd)