[Scummvm-cvs-logs] SF.net SVN: scummvm:[33348] scummvm/branches/branch-0-12-0/base/commandLine .cpp

anotherguest at users.sourceforge.net anotherguest at users.sourceforge.net
Sun Jul 27 23:38:00 CEST 2008


Revision: 33348
          http://scummvm.svn.sourceforge.net/scummvm/?rev=33348&view=rev
Author:   anotherguest
Date:     2008-07-27 21:38:00 +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/branches/branch-0-12-0/base/commandLine.cpp

Modified: scummvm/branches/branch-0-12-0/base/commandLine.cpp
===================================================================
--- scummvm/branches/branch-0-12-0/base/commandLine.cpp	2008-07-27 21:37:47 UTC (rev 33347)
+++ scummvm/branches/branch-0-12-0/base/commandLine.cpp	2008-07-27 21:38:00 UTC (rev 33348)
@@ -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