diff options
Diffstat (limited to 'engines/lure/strings.cpp')
-rw-r--r-- | engines/lure/strings.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lure/strings.cpp b/engines/lure/strings.cpp index 294c48159b..35a246fed9 100644 --- a/engines/lure/strings.cpp +++ b/engines/lure/strings.cpp @@ -204,7 +204,7 @@ void StringData::getString(uint16 stringId, char *dest, const char *hotspotName, // Copy over hotspot or action ch = readCharacter(); const char *p = (ch == '1') ? hotspotName : characterName; - int article = !includeArticles ? 0 : ((ch == 1) ? hotspotArticle : characterArticle); + int article = !includeArticles ? 0 : ((ch == '1') ? hotspotArticle : characterArticle); if (p != NULL) { if (article > 0) { |