diff options
author | Colin Snover | 2017-11-14 13:04:09 -0600 |
---|---|---|
committer | Eugene Sandulenko | 2017-11-18 22:35:12 +0100 |
commit | b90f21597a1f77141dcfcd916850041258164882 (patch) | |
tree | 5163e9b3266369239fd2c7a63296e3cdbe42e14a /engines | |
parent | 350ddcee102b56029c42016b8c116fc839936e1c (diff) | |
download | scummvm-rg350-b90f21597a1f77141dcfcd916850041258164882.tar.gz scummvm-rg350-b90f21597a1f77141dcfcd916850041258164882.tar.bz2 scummvm-rg350-b90f21597a1f77141dcfcd916850041258164882.zip |
FULLPIPE: Use bool literals instead of ints for bool properties
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/input.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/fullpipe/input.cpp b/engines/fullpipe/input.cpp index 0448c1b3c4..499b985d22 100644 --- a/engines/fullpipe/input.cpp +++ b/engines/fullpipe/input.cpp @@ -186,8 +186,8 @@ void FullpipeEngine::defHandleKeyDown(int key) { _normalSpeed = !_normalSpeed; break; case 3: // OHWAIT - _gamePaused = 1; - _flgGameIsRunning = 0; + _gamePaused = true; + _flgGameIsRunning = false; break; case 4: // MUSOFF if (_musicAllowed & 2) |