aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2012-09-05 20:47:32 +1000
committerPaul Gilbert2012-09-05 20:47:32 +1000
commit35a7e79614673509870ad9421020e34fccbede71 (patch)
tree1d45bd28da0dcbc48c03af2822f6636662960158 /engines
parent5780748b62119988dc219d5c636681766065bd75 (diff)
downloadscummvm-rg350-35a7e79614673509870ad9421020e34fccbede71.tar.gz
scummvm-rg350-35a7e79614673509870ad9421020e34fccbede71.tar.bz2
scummvm-rg350-35a7e79614673509870ad9421020e34fccbede71.zip
TONY: Change to hopefully fix Mingw 64 compilation errors
Diffstat (limited to 'engines')
-rw-r--r--engines/tony/mpal/mpal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/tony/mpal/mpal.cpp b/engines/tony/mpal/mpal.cpp
index 533a4d22b9..10f5753540 100644
--- a/engines/tony/mpal/mpal.cpp
+++ b/engines/tony/mpal/mpal.cpp
@@ -570,7 +570,7 @@ void CustomThread(CORO_PARAM, const void *param) {
CORO_BEGIN_CODE(_ctx);
- _ctx->p = *(LpCfCall *)param;
+ _ctx->p = *(const LpCfCall *)param;
CORO_INVOKE_4(GLOBALS._lplpFunctions[_ctx->p->_nCf], _ctx->p->_arg1, _ctx->p->_arg2, _ctx->p->_arg3, _ctx->p->_arg4);
@@ -693,7 +693,7 @@ void ActionThread(CORO_PARAM, const void *param) {
// The ActionThread owns the data block pointed to, so we need to make sure it's
// freed when the process exits
- _ctx->item = *(LpMpalItem *)param;
+ _ctx->item = *(const LpMpalItem *)param;
GLOBALS._mpalError = 0;
for (_ctx->j = 0; _ctx->j < _ctx->item->_action[_ctx->item->_dwRes]._nCmds; _ctx->j++) {