diff options
author | Vladimir Menshakov | 2011-06-13 20:52:54 +0400 |
---|---|---|
committer | Alyssa Milburn | 2011-06-15 17:34:47 +0200 |
commit | 7e7152df286c84b9e6592d3d6823bde87a557659 (patch) | |
tree | e20af106d33b22a63ba7a2e3a8c54fea02e947d6 /engines/dreamweb | |
parent | 1955df129fc1dc17181b1ec18c3fa7c98a18f79f (diff) | |
download | scummvm-rg350-7e7152df286c84b9e6592d3d6823bde87a557659.tar.gz scummvm-rg350-7e7152df286c84b9e6592d3d6823bde87a557659.tar.bz2 scummvm-rg350-7e7152df286c84b9e6592d3d6823bde87a557659.zip |
DREAMWEB: removed looping on channel1
Diffstat (limited to 'engines/dreamweb')
-rw-r--r-- | engines/dreamweb/dreamweb.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/dreamweb/dreamweb.cpp b/engines/dreamweb/dreamweb.cpp index 0996aaee7a..b318c856c5 100644 --- a/engines/dreamweb/dreamweb.cpp +++ b/engines/dreamweb/dreamweb.cpp @@ -430,7 +430,7 @@ void DreamWebEngine::soundHandler() { _channel1 = ch1; if (ch1) { debug(1, "playing sound %u at channel 1", ch1); - playSound(1, ch1, ch0loop); + playSound(1, ch1, 1); } } } |