diff options
-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(); |