diff options
Diffstat (limited to 'script_v1.cpp')
-rw-r--r-- | script_v1.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/script_v1.cpp b/script_v1.cpp index 904f02777e..83153c64f1 100644 --- a/script_v1.cpp +++ b/script_v1.cpp @@ -804,7 +804,7 @@ FixRoom: } } -const short int bit_table[16] = +const int bit_table[16] = {1,2,4,8,0x10,0x20,0x40,0x80,0x100,0x200,0x400,0x800,0x1000,0x2000,0x4000,0x8000}; @@ -1342,8 +1342,8 @@ void Scumm::o5_getVerbEntrypoint() { } void Scumm::o5_ifClassOfIs() { - int act,cls; - bool cond = true, b; + int act,cls, b; + bool cond = true; byte *oldClass; act = getVarOrDirectWord(0x80); |