diff options
author | Torbjörn Andersson | 2013-12-30 00:38:56 +0100 |
---|---|---|
committer | Torbjörn Andersson | 2013-12-30 00:38:56 +0100 |
commit | fd198a4b8b6ce90c2d0528d06c5c0a237d6b889f (patch) | |
tree | 38467feab16b620ea66cf0d18eb7d3a387baafd9 | |
parent | f794f6ae5b25acc6ddd4ba6085661a65cf1ed023 (diff) | |
download | scummvm-rg350-fd198a4b8b6ce90c2d0528d06c5c0a237d6b889f.tar.gz scummvm-rg350-fd198a4b8b6ce90c2d0528d06c5c0a237d6b889f.tar.bz2 scummvm-rg350-fd198a4b8b6ce90c2d0528d06c5c0a237d6b889f.zip |
FULLPIPE: Actually silence GCC warning.
-rw-r--r-- | engines/fullpipe/scenes/scene11.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/scenes/scene11.cpp b/engines/fullpipe/scenes/scene11.cpp index 70f0e06339..26fe10d4cc 100644 --- a/engines/fullpipe/scenes/scene11.cpp +++ b/engines/fullpipe/scenes/scene11.cpp @@ -80,7 +80,7 @@ void scene11_dudeSwingCallback(int *arg) { } } - if ((oldarg - 45 >= 0 != *arg - 45 >= 0) && g_vars->scene11_arcadeIsOn) { + if ((oldarg >= 45) != (*arg >= 45) && g_vars->scene11_arcadeIsOn) { if (oldarg >= *arg) g_fp->playSound(SND_11_031, 0); else |