[Scummvm-cvs-logs] SF.net SVN: scummvm: [32247] scummvm/trunk/backends/platform/ds/arm9/source

agent-q at users.sourceforge.net agent-q at users.sourceforge.net
Sat May 24 16:57:19 CEST 2008


Revision: 32247
          http://scummvm.svn.sourceforge.net/scummvm/?rev=32247&view=rev
Author:   agent-q
Date:     2008-05-24 07:57:18 -0700 (Sat, 24 May 2008)

Log Message:
-----------
Adding getFileSystemFactory() method in response to mail on scummvm-devel.

Modified Paths:
--------------
    scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.cpp
    scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.h

Modified: scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.cpp
===================================================================
--- scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.cpp	2008-05-24 14:54:22 UTC (rev 32246)
+++ scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.cpp	2008-05-24 14:57:18 UTC (rev 32247)
@@ -37,6 +37,7 @@
 #include "cdaudio.h"
 #include "graphics/surface.h"
 #include "touchkeyboard.h"
+#include "ds-fs-factory.h"
 
 OSystem_DS* OSystem_DS::_instance = NULL;
 
@@ -416,6 +417,10 @@
 	t = *localtime(&curTime);
 }
 
+FilesystemFactory *OSystem_DS::getFilesystemFactory() {
+	return &DSFilesystemFactory::instance();
+}
+
 OSystem::MutexRef OSystem_DS::createMutex(void) {
 	return NULL;
 }

Modified: scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.h
===================================================================
--- scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.h	2008-05-24 14:54:22 UTC (rev 32246)
+++ scummvm/trunk/backends/platform/ds/arm9/source/osystem_ds.h	2008-05-24 14:57:18 UTC (rev 32247)
@@ -155,8 +155,7 @@
 	virtual void clearAutoComplete();
 	virtual void setCharactersEntered(int count);
 
-
-
+	FilesystemFactory *getFilesystemFactory();
 };
 
 static const OSystem::GraphicsMode s_supportedGraphicsModes[] = {


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