[Scummvm-cvs-logs] SF.net SVN: scummvm: [25620] scummvm/trunk/engines/lure/strings.cpp
dreammaster at users.sourceforge.net
dreammaster at users.sourceforge.net
Fri Feb 16 04:49:34 CET 2007
Revision: 25620
http://scummvm.svn.sourceforge.net/scummvm/?rev=25620&view=rev
Author: dreammaster
Date: 2007-02-15 19:49:34 -0800 (Thu, 15 Feb 2007)
Log Message:
-----------
Revised previously committed guard to comply to ScummVM coding standard
Modified Paths:
--------------
scummvm/trunk/engines/lure/strings.cpp
Modified: scummvm/trunk/engines/lure/strings.cpp
===================================================================
--- scummvm/trunk/engines/lure/strings.cpp 2007-02-16 02:26:42 UTC (rev 25619)
+++ scummvm/trunk/engines/lure/strings.cpp 2007-02-16 03:49:34 UTC (rev 25620)
@@ -277,8 +277,7 @@
// 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);
}
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list