VOYEUR: Fix logical bug related to the computer data and positioning

This commit is contained in:
Strangerke 2014-03-06 20:52:42 +01:00
parent ed52f7160d
commit 9ce7b11a7e

View File

@ -622,7 +622,7 @@ void ThreadResource::parsePlayCommands() {
v2 = READ_LE_UINT16(dataP);
if (v2 == 0 || _vm->_controlPtr->_state->_victimIndex == v2) {
_vm->_voy->_computerTextId = READ_LE_UINT16(dataP + 2);
_vm->_voy->_computerTextId = READ_LE_UINT16(dataP + 2) - 1;
_vm->_voy->_computerTimeMin = READ_LE_UINT16(dataP + 4);
_vm->_voy->_computerTimeMax = READ_LE_UINT16(dataP + 6);