diff options
| -rw-r--r-- | engines/parallaction/input.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/parallaction/input.cpp b/engines/parallaction/input.cpp index af55753d65..243eaec94f 100644 --- a/engines/parallaction/input.cpp +++ b/engines/parallaction/input.cpp @@ -333,7 +333,11 @@ void Input::exitInventoryMode() { } _vm->closeInventory(); - _vm->setInventoryCursor(item); + if (item == -1) { + _vm->setArrowCursor(); + } else { + _vm->setInventoryCursor(item); + } _vm->resumeJobs(); } |
