mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-29 23:01:58 +00:00
Song 17 should be silence in demos.
svn-id: r12597
This commit is contained in:
parent
04bb7fff2d
commit
fde0a08cc9
@ -101,6 +101,10 @@ void Sound::playSong(int16 songNum) {
|
||||
|
||||
int16 newTune;
|
||||
if (_vm->resource()->isDemo()) {
|
||||
if (songNum == 17) {
|
||||
_vm->music()->stopSong();
|
||||
return;
|
||||
}
|
||||
newTune = _songDemo[songNum - 1].tuneList[0] - 1;
|
||||
} else {
|
||||
newTune = _song[songNum - 1].tuneList[0] - 1;
|
||||
|
Loading…
x
Reference in New Issue
Block a user