aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/kernel.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel.cpp b/engines/sci/engine/kernel.cpp
index 0c83118500..920ea66d5b 100644
--- a/engines/sci/engine/kernel.cpp
+++ b/engines/sci/engine/kernel.cpp
@@ -406,7 +406,9 @@ void Kernel::loadSelectorNames() {
if (staticSelectorTable.empty())
error("Kernel: Could not retrieve selector names");
-
+ else
+ warning("No selector vocabulary found, using a static one");
+
for (uint32 i = 0; i < staticSelectorTable.size(); i++) {
_selectorNames.push_back(staticSelectorTable[i]);
if (oldScriptHeader)