diff options
Diffstat (limited to 'engines/mads/player.h')
-rw-r--r-- | engines/mads/player.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/mads/player.h b/engines/mads/player.h index 7792fb6bdd..cff131342d 100644 --- a/engines/mads/player.h +++ b/engines/mads/player.h @@ -43,8 +43,6 @@ private: void move(); void postUpdate(); - - void update(); public: int _direction; int _newDirection; @@ -66,6 +64,7 @@ public: int _ticksAmount; uint32 _priorTimer; int _unk3; + bool _forceRefresh; public: Player(MADSEngine *vm); @@ -79,6 +78,8 @@ public: void updateFrame(); + void update(); + void idle(); void setDest(const Common::Point &pt, int facing); |