From d7e0f8f4c19c57bf856b852c997ef49acbe26adb Mon Sep 17 00:00:00 2001 From: Filippos Karapetis Date: Sat, 4 Jul 2015 01:16:44 +0300 Subject: MADS: V2: The two new hotspot fields refer to the cursor and the syntax --- engines/mads/hotspots.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'engines/mads/hotspots.cpp') diff --git a/engines/mads/hotspots.cpp b/engines/mads/hotspots.cpp index bd28645504..8afef2e524 100644 --- a/engines/mads/hotspots.cpp +++ b/engines/mads/hotspots.cpp @@ -193,9 +193,8 @@ Hotspot::Hotspot(Common::SeekableReadStream &f, bool isV2) { _active = f.readByte() != 0; _cursor = (CursorType)f.readByte(); if (isV2) { - // This looks to be some sort of bitmask. Perhaps it signifies - // the valid verbs for this hotspot - f.skip(2); // unknown + f.skip(1); // cursor + f.skip(1); // syntax } _vocabId = f.readUint16LE(); _verbId = f.readUint16LE(); -- cgit v1.2.3