aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/ai-waypoint.cpp
diff options
context:
space:
mode:
authorNipun Garg2019-06-21 07:49:23 +0530
committerEugene Sandulenko2019-09-03 17:16:53 +0200
commitffa56e7c4b98fc72f40ac45bb2ec77b4f3194a59 (patch)
treecd0237b9d636eba47000f9501a0290531d601e19 /engines/hdb/ai-waypoint.cpp
parent3969a805abd803bb52b3589aa20f79654a8ea3e1 (diff)
downloadscummvm-rg350-ffa56e7c4b98fc72f40ac45bb2ec77b4f3194a59.tar.gz
scummvm-rg350-ffa56e7c4b98fc72f40ac45bb2ec77b4f3194a59.tar.bz2
scummvm-rg350-ffa56e7c4b98fc72f40ac45bb2ec77b4f3194a59.zip
HDB: Fix type of *draw
Diffstat (limited to 'engines/hdb/ai-waypoint.cpp')
-rw-r--r--engines/hdb/ai-waypoint.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/ai-waypoint.cpp b/engines/hdb/ai-waypoint.cpp
index 88a0c44d13..3887b972b8 100644
--- a/engines/hdb/ai-waypoint.cpp
+++ b/engines/hdb/ai-waypoint.cpp
@@ -29,7 +29,7 @@ void AI::clearWaypoints() {
_numWaypoints = 0;
}
-void *AI::getStandFrameDir(AIEntity *e) {
+Tile *AI::getStandFrameDir(AIEntity *e) {
switch (e->dir) {
case DIR_DOWN:
if (e->standdownFrames)