[Scummvm-cvs-logs] SF.net SVN: scummvm:[35194] scummvm/trunk/engines/groovie/groovie.cpp

spookypeanut at users.sourceforge.net spookypeanut at users.sourceforge.net
Sun Nov 30 22:16:04 CET 2008


Revision: 35194
          http://scummvm.svn.sourceforge.net/scummvm/?rev=35194&view=rev
Author:   spookypeanut
Date:     2008-11-30 21:16:04 +0000 (Sun, 30 Nov 2008)

Log Message:
-----------
T7G: Stop errorString from printing script position

Modified Paths:
--------------
    scummvm/trunk/engines/groovie/groovie.cpp

Modified: scummvm/trunk/engines/groovie/groovie.cpp
===================================================================
--- scummvm/trunk/engines/groovie/groovie.cpp	2008-11-30 15:15:14 UTC (rev 35193)
+++ scummvm/trunk/engines/groovie/groovie.cpp	2008-11-30 21:16:04 UTC (rev 35194)
@@ -244,8 +244,8 @@
 }
 
 void GroovieEngine::errorString(const char *buf_input, char *buf_output, int buf_output_size) {
-	snprintf(buf_output, buf_output_size, "%s%s\n",
-		_script.getContext().c_str(), buf_input);
+	//snprintf(buf_output, buf_output_size, "%s%s\n", _script.getContext().c_str(), buf_input);
+	snprintf(buf_output, buf_output_size, "%s", buf_input);
 }
 
 void GroovieEngine::syncSoundSettings() {


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