From c80456dd17817d87da5ac9c57f65d66b0b6ebc71 Mon Sep 17 00:00:00 2001 From: Johannes Schickel Date: Sat, 14 Nov 2009 23:01:51 +0000 Subject: Fix warning. svn-id: r45907 --- engines/kyra/sound_lok.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/kyra') diff --git a/engines/kyra/sound_lok.cpp b/engines/kyra/sound_lok.cpp index 3eeddf1ce3..2a8c2d96c6 100644 --- a/engines/kyra/sound_lok.cpp +++ b/engines/kyra/sound_lok.cpp @@ -64,7 +64,7 @@ void KyraEngine_LoK::snd_playWanderScoreViaMap(int command, int restart) { } else if (_flags.platform == Common::kPlatformPC98) { if (command == 1) { _sound->beginFadeOut(); - } else if (command >= 2 && command < 53 || command == 55) { + } else if ((command >= 2 && command < 53) || command == 55) { if (_lastMusicCommand != command) _sound->playTrack(command); } else { -- cgit v1.2.3