diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/mads/action.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/mads/action.cpp b/engines/mads/action.cpp index e9593955c5..5d63c3a268 100644 --- a/engines/mads/action.cpp +++ b/engines/mads/action.cpp @@ -472,8 +472,8 @@ void MADSAction::checkActionAtMousePos() { _mainObjectSource = CAT_NONE; } else { InventoryObject &invObject = _vm->_game->_objects.getItem(userInterface._selectedInvIndex); - _verbType = invObject._vocabList[_selectedRow + 1]._verbType; - _prepType = invObject._vocabList[_selectedRow + 1]._prepType; + _verbType = invObject._vocabList[_selectedRow]._verbType; + _prepType = invObject._vocabList[_selectedRow]._prepType; _hotspotId = userInterface._selectedInvIndex; _mainObjectSource = CAT_INV_LIST; |