From 04915a19bc1754ac28ead1b46a55c99c952c5fd7 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 23 Feb 2011 23:06:54 +1100 Subject: TSAGE: Added code to the sound handler stub methods to properly flag sounds as ending --- engines/tsage/core.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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(); -- cgit v1.2.3