- compile error fix

svn-id: r16300
This commit is contained in:
Andrew Kurushin 2004-12-24 21:16:24 +00:00
parent a905d7c198
commit db32aebfa0
2 changed files with 2 additions and 3 deletions

View File

@ -636,7 +636,6 @@ void Actor::StoA(Point &actorPoint, const Point &screenPoint) {
} }
bool Actor::actorWalkTo(uint16 actorId, const ActorLocation &actorLocation) { bool Actor::actorWalkTo(uint16 actorId, const ActorLocation &actorLocation) {
BOOL result = TRUE;
ActorData *actor; ActorData *actor;
actor = getActor(actorId); actor = getActor(actorId);

View File

@ -555,7 +555,7 @@ int Interface::handleCommandUpdate(SURFACE *ds, const Point& imousePt) {
} }
int Interface::handlePlayfieldClick(SURFACE *ds, const Point& imousePt) { int Interface::handlePlayfieldClick(SURFACE *ds, const Point& imousePt) {
return FALSE; return SUCCESS;
/* /*
int objectNum; int objectNum;
uint16 object_flags = 0; uint16 object_flags = 0;
@ -598,7 +598,7 @@ int Interface::handlePlayfieldClick(SURFACE *ds, const Point& imousePt) {
} }
int Interface::handlePlayfieldUpdate(SURFACE *ds, const Point& imousePt) { int Interface::handlePlayfieldUpdate(SURFACE *ds, const Point& imousePt) {
return FALSE; return SUCCESS;
/* /*
const char *object_name; const char *object_name;
int objectNum; int objectNum;