TOLTECS: - Renamed some variables & functions

- Mouse cursor is hidden/shown when _mouseDisabled variable is set via script
This commit is contained in:
Benjamin Haisch 2008-08-08 14:21:30 +00:00 committed by Willem Jan Palenstijn
parent 0c3f2ab5d5
commit 21f6dad09a
2 changed files with 54 additions and 53 deletions

View file

@ -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);