diff options
author | Strangerke | 2016-04-11 23:37:24 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-05-10 09:54:21 +0200 |
commit | 558ab62fd7e526af549f82b92cc820f46faf2fcd (patch) | |
tree | 4aa9c11f089ebb985882a62a00e7a4592a773f86 /engines/gnap/scenes/scene00.cpp | |
parent | 192bc349350e33e44d15f59e548dcecd4a7b253c (diff) | |
download | scummvm-rg350-558ab62fd7e526af549f82b92cc820f46faf2fcd.tar.gz scummvm-rg350-558ab62fd7e526af549f82b92cc820f46faf2fcd.tar.bz2 scummvm-rg350-558ab62fd7e526af549f82b92cc820f46faf2fcd.zip |
GNAP: Enforce the use of a boolean when calling playSound()
Diffstat (limited to 'engines/gnap/scenes/scene00.cpp')
-rw-r--r-- | engines/gnap/scenes/scene00.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gnap/scenes/scene00.cpp b/engines/gnap/scenes/scene00.cpp index c53f58c99a..8291546691 100644 --- a/engines/gnap/scenes/scene00.cpp +++ b/engines/gnap/scenes/scene00.cpp @@ -136,7 +136,7 @@ void GnapEngine::scene00_run() { else { _gameSys->insertSequence(animIdArr[index], 2, 0, 0, kSeqNone, 0, 0, 0); if (index == 2) { - playSound(0x10000, 0); + playSound(0x10000, false); _gameSys->insertSequence(0x359, 2, 0, 0, 0, 0, 0, 0); } else if (index == 3) _gameSys->insertSequence(0x35B, 2, 0, 0, kSeqNone, 0, 0, 0); |