diff options
| author | Paul Gilbert | 2014-01-31 08:57:12 -0500 |
|---|---|---|
| committer | Paul Gilbert | 2014-01-31 08:57:12 -0500 |
| commit | 4174c4a2be34242dc7003b4f4a7363caf743bdb5 (patch) | |
| tree | 09207911c165691d6a6e5e52acee3ec34772f07c | |
| parent | 77e86b3d4805603166330c47f47789d7e4d09398 (diff) | |
| download | scummvm-rg350-4174c4a2be34242dc7003b4f4a7363caf743bdb5.tar.gz scummvm-rg350-4174c4a2be34242dc7003b4f4a7363caf743bdb5.tar.bz2 scummvm-rg350-4174c4a2be34242dc7003b4f4a7363caf743bdb5.zip | |
VOYEUR: Fix hotspot hightlighting in doInterface
| -rw-r--r-- | engines/voyeur/files_threads.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/voyeur/files_threads.cpp b/engines/voyeur/files_threads.cpp index 3746a89a62..da4ae551ba 100644 --- a/engines/voyeur/files_threads.cpp +++ b/engines/voyeur/files_threads.cpp @@ -601,6 +601,7 @@ void ThreadResource::parsePlayCommands() { break; case 9: + // Load up initial timeframese for third set of hotspots v2 = READ_LE_UINT16(dataP); v3 = READ_LE_UINT16(dataP + 2) - 1; @@ -1456,7 +1457,7 @@ int ThreadResource::doInterface() { } if (_vm->_voy._arr5[arrIndex][idx] <= _vm->_voy._RTVNum && - _vm->_voy._arr6[idx][idx] > _vm->_voy._RTVNum) { + _vm->_voy._arr6[arrIndex][idx] > _vm->_voy._RTVNum) { // Set unk? cursor _vm->_eventsManager.setCursor(mangifyCursor); regionIndex = idx; |
