[Scummvm-cvs-logs] SF.net SVN: scummvm: [32248] scummvm/trunk/common/system.cpp

agent-q at users.sourceforge.net agent-q at users.sourceforge.net
Sat May 24 17:01:20 CEST 2008


Revision: 32248
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32248&view=rev
Author:   agent-q
Date:     2008-05-24 08:01:19 -0700 (Sat, 24 May 2008)

Log Message:
-----------
Removing DS ifdef from getFileSystemFactory().

Modified Paths:
--------------
    scummvm/trunk/common/system.cpp

Modified: scummvm/trunk/common/system.cpp
===================================================================
--- scummvm/trunk/common/system.cpp	2008-05-24 14:57:18 UTC (rev 32247)
+++ scummvm/trunk/common/system.cpp	2008-05-24 15:01:19 UTC (rev 32248)
@@ -137,11 +137,9 @@
 #endif
 
 FilesystemFactory *OSystem::getFilesystemFactory() {
-	#if defined(__amigaos4__) || defined(__DC__) || defined(__SYMBIAN32__) || defined(UNIX) || defined(WIN32) || defined(__PSP__)
+	#if defined(__amigaos4__) || defined(__DC__) || defined(__SYMBIAN32__) || defined(UNIX) || defined(WIN32) || defined(__PSP__) || defined(__DS__)
 		// These ports already implement this function, so it should never be called.
 		return 0;
-	#elif defined(__DS__)
-		return &DSFilesystemFactory::instance();
 	#elif defined(PALMOS_MODE)
 		return &PalmOSFilesystemFactory::instance();
 	#elif defined(__PLAYSTATION2__)


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