Fix warning.

svn-id: r45907
This commit is contained in:
Johannes Schickel 2009-11-14 23:01:51 +00:00
parent 9bd5e07d90
commit c80456dd17

View File

@ -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 {