bugfix pt.1

This commit is contained in:
dinkc64 2014-09-18 15:47:49 +00:00
parent f02c59dccc
commit 079f8ce158
1 changed files with 7 additions and 11 deletions

View File

@ -31,17 +31,13 @@ static int prevPause = 0;
static void CheckSystemMacros() // These are the Pause / FFWD macros added to the input dialog
{
// Pause
if (macroSystemPause && macroSystemPause != prevPause) {
if (bDrvOkay && !kNetGame) {
SetPauseMode(!bRunPause);
} else {
SetPauseMode(0);
}
}
prevPause = macroSystemPause;
// FFWD
if (!kNetGame) bAppDoFast = macroSystemFFWD;
// Pause
if (macroSystemPause && macroSystemPause != prevPause) {
PostMessage(hScrnWnd, WM_KEYDOWN, VK_PAUSE, 0);
}
prevPause = macroSystemPause;
// FFWD
if (!kNetGame) bAppDoFast = macroSystemFFWD;
}
static int GetInput(bool bCopy)