aboutsummaryrefslogtreecommitdiff
path: root/engines/saga
diff options
context:
space:
mode:
authorFilippos Karapetis2007-09-11 11:10:23 +0000
committerFilippos Karapetis2007-09-11 11:10:23 +0000
commit541b68e0e432aefa583cc4777439b86be75fd982 (patch)
treea88273bac0f18ba9fc2c06484136370f1722f682 /engines/saga
parent4cc9d17c345883d4a764dd182d5a76167040c888 (diff)
downloadscummvm-rg350-541b68e0e432aefa583cc4777439b86be75fd982.tar.gz
scummvm-rg350-541b68e0e432aefa583cc4777439b86be75fd982.tar.bz2
scummvm-rg350-541b68e0e432aefa583cc4777439b86be75fd982.zip
Removed an obsolete FIXME. The code in that part matches the original, so there doesn't seem to be any obvious reason for that FIXME
svn-id: r28891
Diffstat (limited to 'engines/saga')
-rw-r--r--engines/saga/actor.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/saga/actor.cpp b/engines/saga/actor.cpp
index dc30d8567a..efe6051f8b 100644
--- a/engines/saga/actor.cpp
+++ b/engines/saga/actor.cpp
@@ -2014,9 +2014,7 @@ bool Actor::followProtagonist(ActorData *actor) {
newLocation.y += _vm->_rnd.getRandomNumber(prefer1.y - 1) - prefer1.y / 2;
}
- // FIXME: Fingolfin asks: why is there a FIXME here? Please either clarify what
- // needs fixing, or remove it!
- newLocation.x = clamp(-31*4, newLocation.x, (_vm->getDisplayWidth() + 31) * 4); //fixme
+ newLocation.x = clamp(-31 * 4, newLocation.x, (_vm->getDisplayWidth() + 31) * 4);
return actorWalkTo(actor->_id, newLocation);
}