aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--queen/command.cpp3
-rw-r--r--queen/logic.cpp2
2 files changed, 1 insertions, 4 deletions
diff --git a/queen/command.cpp b/queen/command.cpp
index 27b9e2773e..084cc83026 100644
--- a/queen/command.cpp
+++ b/queen/command.cpp
@@ -235,7 +235,6 @@ void Command::updatePlayer() {
}
if (_vm->input()->keyVerb() != VERB_NONE) {
-
if (_vm->input()->keyVerb() == VERB_USE_JOURNAL) {
_vm->logic()->useJournal();
} else if (_vm->input()->keyVerb() != VERB_SKIP_TEXT) {
@@ -252,8 +251,8 @@ void Command::updatePlayer() {
} else {
grabSelectedVerb();
}
- _vm->input()->clearKeyVerb();
}
+ _vm->input()->clearKeyVerb();
}
_mouseKey = _vm->input()->mouseButton();
diff --git a/queen/logic.cpp b/queen/logic.cpp
index 3afd30be76..be5d6a3ec0 100644
--- a/queen/logic.cpp
+++ b/queen/logic.cpp
@@ -2086,8 +2086,6 @@ bool LogicInterview::handleSpecialMove(uint16 sm) {
}
void LogicGame::useJournal() {
- _vm->input()->clearMouseButton();
- _vm->input()->clearKeyVerb();
_vm->command()->clear(false);
_journal->use();
_vm->walk()->stopJoe();