aboutsummaryrefslogtreecommitdiff
path: root/engines/toltecs/script.h
diff options
context:
space:
mode:
authorBenjamin Haisch2008-08-08 14:21:30 +0000
committerWillem Jan Palenstijn2011-11-20 22:43:05 +0100
commit21f6dad09a5f773fb4869f604f47e84ac266585c (patch)
tree52945d7f1f9770ad221bc4d8bf44ba2862598f20 /engines/toltecs/script.h
parent0c3f2ab5d51fe32792896e16c28dfeec97474010 (diff)
downloadscummvm-rg350-21f6dad09a5f773fb4869f604f47e84ac266585c.tar.gz
scummvm-rg350-21f6dad09a5f773fb4869f604f47e84ac266585c.tar.bz2
scummvm-rg350-21f6dad09a5f773fb4869f604f47e84ac266585c.zip
TOLTECS: - Renamed some variables & functions
- Mouse cursor is hidden/shown when _mouseDisabled variable is set via script
Diffstat (limited to 'engines/toltecs/script.h')
-rw-r--r--engines/toltecs/script.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/toltecs/script.h b/engines/toltecs/script.h
index 7b91105f92..d7712a8932 100644
--- a/engines/toltecs/script.h
+++ b/engines/toltecs/script.h
@@ -87,8 +87,8 @@ protected:
byte *_code, *_subCode;
byte *_localData;
- bool _switchStack1, _switchStack2, _switchStack3;
- bool _scriptFlag01;
+ bool _switchLocalDataNear, _switchLocalDataFar, _switchLocalDataToStack;
+ bool _cmpBitTest;
ScriptSlot _slots[kMaxScriptSlots];
@@ -109,12 +109,12 @@ protected:
int16 arg16(int16 offset);
int32 arg32(int16 offset);
- void push8(byte value);
- byte pop8();
- void push16(int16 value);
- int16 pop16();
- void push32(int32 value);
- int32 pop32();
+ void pushByte(byte value);
+ byte popByte();
+ void pushInt16(int16 value);
+ int16 popInt16();
+ void pushInt32(int32 value);
+ int32 popInt32();
void localWrite8(int16 offset, byte value);
byte localRead8(int16 offset);