diff options
author | Travis Howell | 2002-11-07 09:08:08 +0000 |
---|---|---|
committer | Travis Howell | 2002-11-07 09:08:08 +0000 |
commit | a2be90a22125fa2652f65ee2387d5b28fb4e6922 (patch) | |
tree | 0ab80aacfb0a00fd621f038b5f21f3965fd353fd | |
parent | 45d6dbccddaaa9a92babdabfda6dc32d99a82134 (diff) | |
download | scummvm-rg350-a2be90a22125fa2652f65ee2387d5b28fb4e6922.tar.gz scummvm-rg350-a2be90a22125fa2652f65ee2387d5b28fb4e6922.tar.bz2 scummvm-rg350-a2be90a22125fa2652f65ee2387d5b28fb4e6922.zip |
Work around to allow full ending sequence to work.
svn-id: r5455
-rw-r--r-- | simon/items.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index c5122f5e1e..3a8dcbeba8 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -1609,7 +1609,7 @@ void SimonState::o_unk_127() warning("o_unk_127(%d,%d,%d) not implemented properly", a, b, c); - if (a != _last_music_played) { + if ((a != _last_music_played) && (a < 93)) { _last_music_played = a; playMusic(a); } |