aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorColin Snover2017-02-09 12:57:58 -0600
committerColin Snover2017-04-22 19:25:21 -0500
commit848bce47e18ab60137597b419a2eeb2013bfc7cc (patch)
treef29fc79ff2afe59fcc470230e908b01e3a1287e0 /engines
parent81059847034f0fb868e64255e341b17f8d62c591 (diff)
downloadscummvm-rg350-848bce47e18ab60137597b419a2eeb2013bfc7cc.tar.gz
scummvm-rg350-848bce47e18ab60137597b419a2eeb2013bfc7cc.tar.bz2
scummvm-rg350-848bce47e18ab60137597b419a2eeb2013bfc7cc.zip
SCI: Fix typo in debug message
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/kscripts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kscripts.cpp b/engines/sci/engine/kscripts.cpp
index 7c4c955824..a7c0d87715 100644
--- a/engines/sci/engine/kscripts.cpp
+++ b/engines/sci/engine/kscripts.cpp
@@ -93,7 +93,7 @@ reg_t kLock(EngineState *s, int argc, reg_t *argv) {
// Happens in CD games (e.g. LSL6CD) with the message
// resource. It isn't fatal, and it's usually caused
// by leftover scripts.
- debugC(kDebugLevelResMan, "[resMan] Attempt to unlock non-existant resource %s", id.toString().c_str());
+ debugC(kDebugLevelResMan, "[resMan] Attempt to unlock non-existent resource %s", id.toString().c_str());
}
}
break;