diff options
author | Martin Kiewitz | 2010-04-26 14:13:38 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-04-26 14:13:38 +0000 |
commit | 3f601f15bf59650cd31b2415c257c4871707ecde (patch) | |
tree | f95a7c37ba9c52d7f64aaa5424fc34087615596b /engines | |
parent | 98ae0f82183ca3612f641d6203c42d8003bab36e (diff) | |
download | scummvm-rg350-3f601f15bf59650cd31b2415c257c4871707ecde.tar.gz scummvm-rg350-3f601f15bf59650cd31b2415c257c4871707ecde.tar.bz2 scummvm-rg350-3f601f15bf59650cd31b2415c257c4871707ecde.zip |
SCI: changing comment slightly about setting signal selector in stopSound for SCI0
svn-id: r48806
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/sound/soundcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/soundcmd.cpp b/engines/sci/sound/soundcmd.cpp index 8970f9c756..91664f65b9 100644 --- a/engines/sci/sound/soundcmd.cpp +++ b/engines/sci/sound/soundcmd.cpp @@ -518,7 +518,7 @@ void SoundCommandParser::cmdStopSound(reg_t obj, int16 value) { } else { PUT_SEL32V(_segMan, obj, SELECTOR(handle), 0); } - // we need to set signal selector at least for sq3old (SCI0LATE), otherwise freeing the 2 guys wont work (endless loop) + // we need to set signal selector as well for SCI0 at least for sq3old, otherwise freeing the 2 guys wont work (endless loop) PUT_SEL32V(_segMan, obj, SELECTOR(signal), SIGNAL_OFFSET); musicSlot->dataInc = 0; |