diff options
author | Strangerke | 2012-04-11 18:23:17 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2018-03-28 17:36:57 +0200 |
commit | 9074e59fef9eabb67099bc1b6977240558a19237 (patch) | |
tree | c6bdf38d0b9f3c77a5111846022457a99ae46e34 /engines/lilliput/script.h | |
parent | 58dc875b2eecc2ba0482951c7c4a0df0102e7717 (diff) | |
download | scummvm-rg350-9074e59fef9eabb67099bc1b6977240558a19237.tar.gz scummvm-rg350-9074e59fef9eabb67099bc1b6977240558a19237.tar.bz2 scummvm-rg350-9074e59fef9eabb67099bc1b6977240558a19237.zip |
LILLIPUT: Implement opcodes used by game scripts 3 and 4
Diffstat (limited to 'engines/lilliput/script.h')
-rw-r--r-- | engines/lilliput/script.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engines/lilliput/script.h b/engines/lilliput/script.h index d8a87768af..fd323b04ab 100644 --- a/engines/lilliput/script.h +++ b/engines/lilliput/script.h @@ -57,15 +57,15 @@ private: byte _array122FD[20]; byte _array128EF[40]; - int16 _word1881B; - int16 _word16F00; - int16 _word10802; - int16 _word10804; - int16 _word15FFB; - int16 _word15FFD; - int16 _word12A00; - int16 _word12A02; - int16 _word1855E; + int _word1881B; + int _word16F00; + int _word10802; + int _word10804; + int _word15FFB; + int _word15FFD; + int _word12A00; + int _word12A02; + int _word1855E; int handleOpcode(Common::MemoryReadStream *script); byte handleOpcodeType1(int curWord); |