diff options
author | Andrew Kurushin | 2004-12-24 21:16:24 +0000 |
---|---|---|
committer | Andrew Kurushin | 2004-12-24 21:16:24 +0000 |
commit | db32aebfa064745652fc2bf7dff5992f3754d66a (patch) | |
tree | b0d411f001ec3e76bfa20b71dd58fcd12f4b8b6d | |
parent | a905d7c198216b89e2577ca1e1ee5f1beb595e38 (diff) | |
download | scummvm-rg350-db32aebfa064745652fc2bf7dff5992f3754d66a.tar.gz scummvm-rg350-db32aebfa064745652fc2bf7dff5992f3754d66a.tar.bz2 scummvm-rg350-db32aebfa064745652fc2bf7dff5992f3754d66a.zip |
- compile error fix
svn-id: r16300
-rw-r--r-- | saga/actor.cpp | 1 | ||||
-rw-r--r-- | saga/interface.cpp | 4 |
2 files changed, 2 insertions, 3 deletions
diff --git a/saga/actor.cpp b/saga/actor.cpp index e8542628dc..69b6f06e09 100644 --- a/saga/actor.cpp +++ b/saga/actor.cpp @@ -636,7 +636,6 @@ void Actor::StoA(Point &actorPoint, const Point &screenPoint) { } bool Actor::actorWalkTo(uint16 actorId, const ActorLocation &actorLocation) { - BOOL result = TRUE; ActorData *actor; actor = getActor(actorId); diff --git a/saga/interface.cpp b/saga/interface.cpp index b951d4203b..d8111d135d 100644 --- a/saga/interface.cpp +++ b/saga/interface.cpp @@ -555,7 +555,7 @@ int Interface::handleCommandUpdate(SURFACE *ds, const Point& imousePt) { } int Interface::handlePlayfieldClick(SURFACE *ds, const Point& imousePt) { - return FALSE; + return SUCCESS; /* int objectNum; uint16 object_flags = 0; @@ -598,7 +598,7 @@ int Interface::handlePlayfieldClick(SURFACE *ds, const Point& imousePt) { } int Interface::handlePlayfieldUpdate(SURFACE *ds, const Point& imousePt) { - return FALSE; + return SUCCESS; /* const char *object_name; int objectNum; |