diff options
-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 |