aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/vm.h
diff options
context:
space:
mode:
authorFilippos Karapetis2009-11-20 15:31:08 +0000
committerFilippos Karapetis2009-11-20 15:31:08 +0000
commit22c09f521aa5d4a220d53a8f8b3b277623b128a6 (patch)
tree1aea2af3959cbe43d1803a530ee6b72fe447a61c /engines/sci/engine/vm.h
parent1ea30ca176441a2a440901cce4c99ffa5493b977 (diff)
downloadscummvm-rg350-22c09f521aa5d4a220d53a8f8b3b277623b128a6.tar.gz
scummvm-rg350-22c09f521aa5d4a220d53a8f8b3b277623b128a6.tar.bz2
scummvm-rg350-22c09f521aa5d4a220d53a8f8b3b277623b128a6.zip
Removed more unused selectors - the canBeHere selector is replaced by cantBeHere in SCI1+
svn-id: r46011
Diffstat (limited to 'engines/sci/engine/vm.h')
-rw-r--r--engines/sci/engine/vm.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/vm.h b/engines/sci/engine/vm.h
index 3a3f48b3ac..ed1d978b56 100644
--- a/engines/sci/engine/vm.h
+++ b/engines/sci/engine/vm.h
@@ -146,7 +146,7 @@ struct SelectorCache {
Selector b_movCnt, b_i1, b_i2, b_di, b_xAxis, b_incr; // Various Bresenham vars
Selector xStep, yStep; // BR adjustments
Selector moveSpeed; // Used for DoBresen
- Selector canBeHere; // Funcselector: Checks for movement validity
+ Selector canBeHere; // Funcselector: Checks for movement validity in SCI0
Selector heading, mover; // Used in DoAvoider
Selector doit; // Called (!) by the Animate() system call
Selector isBlocked, looper; // Used in DoAvoider
@@ -180,7 +180,7 @@ struct SelectorCache {
Selector moveDone; // used for DoBresen
// SCI1 selectors which have been moved a bit in SCI1.1, but otherwise static
- Selector cantBeHere;
+ Selector cantBeHere; // Checks for movement avoidance in SCI1+. Replaces canBeHere
Selector topString; // SCI1 scroll lists use this instead of lsTop
Selector flags;