[Scummvm-cvs-logs] SF.net SVN: scummvm:[33347] scummvm/trunk/base/commandLine.cpp

anotherguest at users.sourceforge.net anotherguest at users.sourceforge.net
Sun Jul 27 23:37:47 CEST 2008


Revision: 33347
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33347&view=rev
Author:   anotherguest
Date:     2008-07-27 21:37:47 +0000 (Sun, 27 Jul 2008)

Log Message:
-----------
Fixed the Symbian default savepath, but adding the needed \ at the end and now as a string.

Modified Paths:
--------------
    scummvm/trunk/base/commandLine.cpp

Modified: scummvm/trunk/base/commandLine.cpp
===================================================================
--- scummvm/trunk/base/commandLine.cpp	2008-07-27 21:35:49 UTC (rev 33346)
+++ scummvm/trunk/base/commandLine.cpp	2008-07-27 21:37:47 UTC (rev 33347)
@@ -228,7 +228,7 @@
 #elif defined(__SYMBIAN32__)
 	strcpy(savePath, Symbian::GetExecutablePath());
 	strcat(savePath, DEFAULT_SAVE_PATH);
-	strcat(savePath, '\\');
+	strcat(savePath, "\\");
 	ConfMan.registerDefault("savepath", savePath);
 #elif defined (IPHONE)
 	ConfMan.registerDefault("savepath", OSystem_IPHONE::getSavePath());


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