diff options
author | Paul Gilbert | 2016-12-27 00:33:00 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-12-27 00:33:00 -0500 |
commit | 3885bfc752fa132c4a09c41cc1f1bf63fccaa42b (patch) | |
tree | 5acc7d9b25aa13c575164449d48d16e98596b329 /engines/titanic | |
parent | 3603ed73f0e95c286362f089ccffad42f2f40182 (diff) | |
download | scummvm-rg350-3885bfc752fa132c4a09c41cc1f1bf63fccaa42b.tar.gz scummvm-rg350-3885bfc752fa132c4a09c41cc1f1bf63fccaa42b.tar.bz2 scummvm-rg350-3885bfc752fa132c4a09c41cc1f1bf63fccaa42b.zip |
TITANIC: Don't play sound when entering views with sweet bowls
Diffstat (limited to 'engines/titanic')
-rw-r--r-- | engines/titanic/game/sweet_bowl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/sweet_bowl.cpp b/engines/titanic/game/sweet_bowl.cpp index 29d8044a85..7a3832e7c2 100644 --- a/engines/titanic/game/sweet_bowl.cpp +++ b/engines/titanic/game/sweet_bowl.cpp @@ -48,7 +48,7 @@ bool CSweetBowl::MovieEndMsg(CMovieEndMsg *msg) { bool CSweetBowl::EnterViewMsg(CEnterViewMsg *msg) { setVisible(false); loadSound("b#43.wav"); - playSound("b#42.wav"); + loadSound("b#42.wav"); return true; } |