[Scummvm-cvs-logs] SF.net SVN: scummvm:[35328] scummvm/trunk/engines/agos/script_e1.cpp

Kirben at users.sourceforge.net Kirben at users.sourceforge.net
Sat Dec 13 05:55:55 CET 2008


Revision: 35328
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35328&view=rev
Author:   Kirben
Date:     2008-12-13 04:55:54 +0000 (Sat, 13 Dec 2008)

Log Message:
-----------
Fix display of spell status in Elvira 2, caused by newline in oe1_pcName().

Modified Paths:
--------------
    scummvm/trunk/engines/agos/script_e1.cpp

Modified: scummvm/trunk/engines/agos/script_e1.cpp
===================================================================
--- scummvm/trunk/engines/agos/script_e1.cpp	2008-12-13 04:52:51 UTC (rev 35327)
+++ scummvm/trunk/engines/agos/script_e1.cpp	2008-12-13 04:55:54 UTC (rev 35328)
@@ -611,7 +611,7 @@
 	Item *i = getNextItemPtr();
 
 	// TODO: Change first letter to upper case.
-	showMessageFormat("%s\n", (const byte *)getStringPtrByID(i->itemName)); // Difference
+	showMessageFormat("%s", (const byte *)getStringPtrByID(i->itemName)); // Difference
 }
 
 void AGOSEngine_Elvira1::oe1_isCalled() {


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