diff options
author | Walter van Niftrik | 2009-09-01 02:11:55 +0000 |
---|---|---|
committer | Walter van Niftrik | 2009-09-01 02:11:55 +0000 |
commit | 2777e9f34958731eba9f6b7cbf5c3e7b3b54315b (patch) | |
tree | 767a4cf74cb7cb60d598a81f442d69c7d4f621b7 /engines | |
parent | fed9e3e2df083ac86d513d7ba3b08bfca76a272b (diff) | |
download | scummvm-rg350-2777e9f34958731eba9f6b7cbf5c3e7b3b54315b.tar.gz scummvm-rg350-2777e9f34958731eba9f6b7cbf5c3e7b3b54315b.tar.bz2 scummvm-rg350-2777e9f34958731eba9f6b7cbf5c3e7b3b54315b.zip |
SCI: Fix relative cues in SCI1.
svn-id: r43871
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sfx/iterator.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sfx/iterator.cpp b/engines/sci/sfx/iterator.cpp index dc2979abda..edbb309ed1 100644 --- a/engines/sci/sfx/iterator.cpp +++ b/engines/sci/sfx/iterator.cpp @@ -1091,7 +1091,7 @@ void Sci1SongIterator::init() { _loops = 0; priority = 0; - _ccc = 127; + _ccc = 0; _deviceId = 0x00; // Default to Sound Blaster/Adlib for purposes of cue computation _numChannels = 0; _initialised = false; |