diff options
author | Paul Gilbert | 2007-02-16 03:49:34 +0000 |
---|---|---|
committer | Paul Gilbert | 2007-02-16 03:49:34 +0000 |
commit | 97bb2336634a252b6d0b249ae359514a12379bd0 (patch) | |
tree | 47768ddc91180129d1354d3de6f9b75409a03e5a | |
parent | 8bef04f94a443566a8dfa033fa81404bbdbf7725 (diff) | |
download | scummvm-rg350-97bb2336634a252b6d0b249ae359514a12379bd0.tar.gz scummvm-rg350-97bb2336634a252b6d0b249ae359514a12379bd0.tar.bz2 scummvm-rg350-97bb2336634a252b6d0b249ae359514a12379bd0.zip |
Revised previously committed guard to comply to ScummVM coding standard
svn-id: r25620
-rw-r--r-- | engines/lure/strings.cpp | 3 |
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); } |