aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorEugene Sandulenko2010-08-17 11:01:41 +0000
committerEugene Sandulenko2010-08-17 11:01:41 +0000
commit4a0cdf00e1d90ee6a7baf74190f9e85f0a4eec27 (patch)
tree0f16c0e3efd5860774a81806943dc4278086ad19 /engines
parentee23fe34b07effcf394ca43044270af0e2ebd4af (diff)
downloadscummvm-rg350-4a0cdf00e1d90ee6a7baf74190f9e85f0a4eec27.tar.gz
scummvm-rg350-4a0cdf00e1d90ee6a7baf74190f9e85f0a4eec27.tar.bz2
scummvm-rg350-4a0cdf00e1d90ee6a7baf74190f9e85f0a4eec27.zip
TINSEL: fix warning
svn-id: r52149
Diffstat (limited to 'engines')
-rw-r--r--engines/tinsel/tinsel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp
index 6c77a98dda..0f5b27c85a 100644
--- a/engines/tinsel/tinsel.cpp
+++ b/engines/tinsel/tinsel.cpp
@@ -283,7 +283,7 @@ static void SingleLeftProcess(CORO_PARAM, const void *param) {
} while (DwGetCurrentTime() < _ctx->endTicks);
if (GetProvNotProcessed()) {
- Common::Point clickPos = *(Common::Point *)param;
+ const Common::Point clickPos = *(const Common::Point *)param;
PlayerEvent(PLR_WALKTO, clickPos);
}