aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--verbs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/verbs.cpp b/verbs.cpp
index d764a00171..6c65606cf4 100644
--- a/verbs.cpp
+++ b/verbs.cpp
@@ -40,7 +40,7 @@ void Scumm::checkExecVerbs() {
/* Check keypresses */
vs = &_verbs[1];
for (i=1; i<_maxVerbs; i++,vs++) {
- if (vs->verbid && vs->saveid && vs->curmode==1) {
+ if (vs->verbid && vs->saveid==0 && vs->curmode==1) {
if (_mouseButStat == vs->key) {
runInputScript(1, vs->verbid, 1);
return;