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

anotherguest at users.sourceforge.net anotherguest at users.sourceforge.net
Sun Sep 7 21:19:46 CEST 2008


Revision: 34423
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34423&view=rev
Author:   anotherguest
Date:     2008-09-07 19:19:45 +0000 (Sun, 07 Sep 2008)

Log Message:
-----------
Symbian already store all paths with a trailing "\". 
Quick fix waiting for proper solution

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

Modified: scummvm/trunk/engines/engine.cpp
===================================================================
--- scummvm/trunk/engines/engine.cpp	2008-09-07 18:39:31 UTC (rev 34422)
+++ scummvm/trunk/engines/engine.cpp	2008-09-07 19:19:45 UTC (rev 34423)
@@ -60,7 +60,11 @@
 		// FIXME: Temporary workaround for "missing" slashes at the end
 		// of _gameDataPath. This can go once we completed the transition
 		// to the new Archive/SearchPath system. See also bug #2098279.
+#ifdef __SYMBIAN32__
+		_gameDataPath(ConfMan.get("path")),
+#else
 		_gameDataPath(ConfMan.get("path") + '/'),
+#endif
 		_pauseLevel(0),
 		_mainMenuDialog(NULL) {
 


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