mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-12 03:56:20 +00:00
Fix warning.
svn-id: r45907
This commit is contained in:
parent
9bd5e07d90
commit
c80456dd17
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user