diff options
author | Strangerke | 2013-04-26 00:40:29 +0200 |
---|---|---|
committer | Strangerke | 2013-04-26 00:41:04 +0200 |
commit | 4b7f352768bcbc7dce24e7afc7c0b5ab3ecdd4c1 (patch) | |
tree | aa627e2c9eb7b009671d84451011f4c83e0bcef8 | |
parent | 1841d184979e22741905cf1ebe643eaedf822338 (diff) | |
download | scummvm-rg350-4b7f352768bcbc7dce24e7afc7c0b5ab3ecdd4c1.tar.gz scummvm-rg350-4b7f352768bcbc7dce24e7afc7c0b5ab3ecdd4c1.tar.bz2 scummvm-rg350-4b7f352768bcbc7dce24e7afc7c0b5ab3ecdd4c1.zip |
HOPKINS: Fix bug #3611566
-rw-r--r-- | engines/hopkins/dialogs.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/hopkins/dialogs.cpp b/engines/hopkins/dialogs.cpp index 5b9fb8afc2..c8a478f93b 100644 --- a/engines/hopkins/dialogs.cpp +++ b/engines/hopkins/dialogs.cpp @@ -422,6 +422,7 @@ void DialogsManager::showInventory() { if (cursorId != 1 && cursorId != 2 && cursorId != 3 && cursorId != 16) { if (mouseButton == 2) { _vm->_objectsMan->nextObjectIcon(newInventoryItem); + cursorId = _vm->_events->_mouseCursorId; if (cursorId != 23) _vm->_events->changeMouseCursor(cursorId); } |