aboutsummaryrefslogtreecommitdiff
path: root/queen/walk.h
diff options
context:
space:
mode:
authorGregory Montoir2004-01-08 10:25:18 +0000
committerGregory Montoir2004-01-08 10:25:18 +0000
commit74829245d9f05fe51414e26c13c8b18db89b9e2a (patch)
tree5bd3475dfd3f07bddfa7f58923159bbb8786924c /queen/walk.h
parent8c2da44b971a6adda806fac050cf5c8cd48f4690 (diff)
downloadscummvm-rg350-74829245d9f05fe51414e26c13c8b18db89b9e2a.tar.gz
scummvm-rg350-74829245d9f05fe51414e26c13c8b18db89b9e2a.tar.bz2
scummvm-rg350-74829245d9f05fe51414e26c13c8b18db89b9e2a.zip
mostly cleanup :
- moved main update() method to QueenEngine - merged update() & checkPlayer() - added a method in Logic class to handle the CUTAWAY_SPECIAL stuff - Journal remembers last seen page - no need to call loadPanel() to restore panel palette, use palSetPanel() instead svn-id: r12240
Diffstat (limited to 'queen/walk.h')
-rw-r--r--queen/walk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/queen/walk.h b/queen/walk.h
index 09a8168a03..16c64e1b67 100644
--- a/queen/walk.h
+++ b/queen/walk.h
@@ -44,7 +44,7 @@ struct MovePersonAnim {
struct WalkData {
int16 dx, dy;
const Area *area;
- uint16 areaNum; // extra stuff for customMoveJoe
+ uint16 areaNum;
MovePersonAnim anim;
};
@@ -125,7 +125,7 @@ private:
//! set if stopJoe() is called
bool _joeInterrupted;
- //! set if customMoveJoe() is called
+ //! set if handleSpecialArea() is called
bool _joeMoveBlock;
QueenEngine *_vm;