diff options
-rw-r--r-- | engines/lure/surface.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/surface.cpp b/engines/lure/surface.cpp index f9845cc58c..9717c58d47 100644 --- a/engines/lure/surface.cpp +++ b/engines/lure/surface.cpp @@ -569,7 +569,7 @@ int TalkDialog::getArticle(uint16 msgId, uint16 objId) { for (const uint16 *p = germanArticles[sectionIndex].translations; *p != 0; p += 2) { if (*p == id) // Return the article index to use - return *++p; + return *++p + 1; } return 0; @@ -587,7 +587,7 @@ int TalkDialog::getArticle(uint16 msgId, uint16 objId) { for (const uint16 *p = tlData; *p != 0; p += 2) { if (*p == id) // Return the article index to use - return *++p; + return *++p + 1; } return 0; |