aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/mpal.h
diff options
context:
space:
mode:
authorTorbjörn Andersson2013-06-10 20:05:21 +0200
committerTorbjörn Andersson2013-06-10 20:07:33 +0200
commitad38029e6e10db27652e2f79c9c68b87593ebffa (patch)
tree71b8c36608fb8209d370f70bab09413984fb5aab /engines/tony/mpal/mpal.h
parent36a88d2f7229bc6c92b5d7df0eed56dabc911f7e (diff)
downloadscummvm-rg350-ad38029e6e10db27652e2f79c9c68b87593ebffa.tar.gz
scummvm-rg350-ad38029e6e10db27652e2f79c9c68b87593ebffa.tar.bz2
scummvm-rg350-ad38029e6e10db27652e2f79c9c68b87593ebffa.zip
TONY: Remove varargs from mpalQueryCORO(). CID 1002105
It didn't always reach va_end(), but rather than adding a call it makes more sense to just drop the varargs from it, since it didn't use it anyway.
Diffstat (limited to 'engines/tony/mpal/mpal.h')
-rw-r--r--engines/tony/mpal/mpal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tony/mpal/mpal.h b/engines/tony/mpal/mpal.h
index 779bdd6188..2d22ee8faf 100644
--- a/engines/tony/mpal/mpal.h
+++ b/engines/tony/mpal/mpal.h
@@ -417,7 +417,7 @@ MpalHandle mpalQueryHANDLE(uint16 wQueryType, ...);
* @remarks This is the specialised version of the original single mpalQuery
* method that needs to run within a co-routine context.
*/
-void mpalQueryCORO(CORO_PARAM, uint16 wQueryType, uint32 *dwRet, ...);
+void mpalQueryCORO(CORO_PARAM, uint16 wQueryType, uint32 *dwRet);
/**
* Execute a script. The script runs on multitasking by a thread.