aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/dialogs.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/dialogs.cpp b/scumm/dialogs.cpp
index be722c4bd0..eae5d22305 100644
--- a/scumm/dialogs.cpp
+++ b/scumm/dialogs.cpp
@@ -187,7 +187,7 @@ const ScummVM::String ScummDialog::queryResString(int stringno)
strcpy(result, (char*)tmp);
}
- if (!result) { // Gracelessly degrade to english :)
+ if (!result || *result == '\0') { // Gracelessly degrade to english :)
if (_scumm->_features & GF_AFTER_V6)
result = string_map_table_v6[stringno - 1].string;
else