From 73242aa5bc15746572c183b24c77e7fb20c023a0 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 31 Jan 2016 18:10:58 -0500 Subject: SHERLOCK: SS: Fix incorrect conversation lines display in German version --- engines/sherlock/scalpel/scalpel_talk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'engines/sherlock/scalpel') diff --git a/engines/sherlock/scalpel/scalpel_talk.cpp b/engines/sherlock/scalpel/scalpel_talk.cpp index be2baf9184..b6e9482e3c 100644 --- a/engines/sherlock/scalpel/scalpel_talk.cpp +++ b/engines/sherlock/scalpel/scalpel_talk.cpp @@ -276,7 +276,7 @@ void ScalpelTalk::talkInterface(const byte *&str) { str += idx; // If line wrap occurred, then move to after the separating space between the words - if ((!isOpcode(str[0])) && str[0] != '{') + if (str[0] && (!isOpcode(str[0])) && str[0] != '{') ++str; _yp += 9; -- cgit v1.2.3