diff options
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scumm/script_v2.cpp b/scumm/script_v2.cpp index bdb1577dcb..9d7c8b1ed4 100644 --- a/scumm/script_v2.cpp +++ b/scumm/script_v2.cpp @@ -752,7 +752,8 @@ void Scumm_v2::o2_verbOps() { int x = fetchScriptByte() << 3; int y = fetchScriptByte() << 3; slot = getVarOrDirectByte(0x80) + 1; - int unk = fetchScriptByte(); // ? + // int unk = fetchScriptByte(); // ? + fetchScriptByte(); VerbSlot *vs; assert(0 < slot && slot < _maxVerbs); |