mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-06 01:31:39 +00:00
VOYEUR: Fix logical bug related to the computer data and positioning
This commit is contained in:
parent
ed52f7160d
commit
9ce7b11a7e
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user