aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/lure/strings.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/engines/lure/strings.cpp b/engines/lure/strings.cpp
index 21b61c386e..39f1377206 100644
--- a/engines/lure/strings.cpp
+++ b/engines/lure/strings.cpp
@@ -277,8 +277,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;
- if (p != NULL)
- {
+ if (p != NULL) {
strcpy(destPos, p);
destPos += strlen(p);
}