diff options
author | Paul Gilbert | 2011-02-23 23:06:54 +1100 |
---|---|---|
committer | Paul Gilbert | 2011-02-23 23:06:54 +1100 |
commit | 04915a19bc1754ac28ead1b46a55c99c952c5fd7 (patch) | |
tree | 7c0ee78f34d410150d9abf9f14dad81872df88d6 /engines/tsage | |
parent | 03942da718c1e0c679954c261fefac532f80a3a2 (diff) | |
download | scummvm-rg350-04915a19bc1754ac28ead1b46a55c99c952c5fd7.tar.gz scummvm-rg350-04915a19bc1754ac28ead1b46a55c99c952c5fd7.tar.bz2 scummvm-rg350-04915a19bc1754ac28ead1b46a55c99c952c5fd7.zip |
TSAGE: Added code to the sound handler stub methods to properly flag sounds as ending
Diffstat (limited to 'engines/tsage')
-rw-r--r-- | engines/tsage/core.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/tsage/core.cpp b/engines/tsage/core.cpp index 4f7bfef173..9f31425620 100644 --- a/engines/tsage/core.cpp +++ b/engines/tsage/core.cpp @@ -2808,7 +2808,9 @@ void SoundHandler::dispatch() { } if (_field280 != -1) { - if (!_sound.proc3()) { + // FIXME: Hardcoded to only flag a sound ended if an action has been set + if (_action) { +// if (!_sound.proc3()) { _field280 = -1; if (_action) { _action->signal(); |