diff options
-rw-r--r-- | engines/tsage/converse.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/engines/tsage/converse.cpp b/engines/tsage/converse.cpp index 83989879dc..bcda6dbdcd 100644 --- a/engines/tsage/converse.cpp +++ b/engines/tsage/converse.cpp @@ -320,12 +320,7 @@ void SequenceManager::attached(EventHandler *newOwner, EventHandler *fmt, va_lis } setup(); - // TODO: This is not particulary nice, since dummy is uninitialized. - // Since the default Action implementation does not access the va_list - // parameter it should be fine though. Still it would be nice to find - // a better solution to this. - va_list dummy; - Action::attached(newOwner, fmt, dummy); + Action::attached(newOwner, fmt, va); } /** |