[Scummvm-cvs-logs] SF.net SVN: scummvm:[34099] scummvm/trunk/backends/platform/symbian/src

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Fri Aug 22 13:41:15 CEST 2008


Revision: 34099
          http://scummvm.svn.sourceforge.net/scummvm/?rev=34099&view=rev
Author:   fingolfin
Date:     2008-08-22 11:41:14 +0000 (Fri, 22 Aug 2008)

Log Message:
-----------
Symbian backend does not have to implement config file methods, as long as they are identical to those in the SDL backend...

Modified Paths:
--------------
    scummvm/trunk/backends/platform/symbian/src/SymbianOS.cpp
    scummvm/trunk/backends/platform/symbian/src/SymbianOS.h

Modified: scummvm/trunk/backends/platform/symbian/src/SymbianOS.cpp
===================================================================
--- scummvm/trunk/backends/platform/symbian/src/SymbianOS.cpp	2008-08-22 11:36:47 UTC (rev 34098)
+++ scummvm/trunk/backends/platform/symbian/src/SymbianOS.cpp	2008-08-22 11:41:14 UTC (rev 34099)
@@ -134,27 +134,6 @@
 	return configFile;
 }
 
-Common::SeekableReadStream *OSystem_SDL_Symbian::openConfigFileForReading() {
-	Common::File *confFile = new Common::File();
-	assert(confFile);
-	if (!confFile->open(getDefaultConfigFileName())) {
-		delete confFile;
-		confFile = 0;
-	}
-	return confFile;
-}
-
-Common::WriteStream *OSystem_SDL_Symbian::openConfigFileForWriting() {
-	Common::DumpFile *confFile = new Common::DumpFile();
-	assert(confFile);
-	if (!confFile->open(getDefaultConfigFileName())) {
-		delete confFile;
-		confFile = 0;
-	}
-	return confFile;
-}
-
-
 OSystem_SDL_Symbian::zoneDesc OSystem_SDL_Symbian::_zones[TOTAL_ZONES] = {
         { 0, 0, 320, 145 },
         { 0, 145, 150, 55 },

Modified: scummvm/trunk/backends/platform/symbian/src/SymbianOS.h
===================================================================
--- scummvm/trunk/backends/platform/symbian/src/SymbianOS.h	2008-08-22 11:36:47 UTC (rev 34098)
+++ scummvm/trunk/backends/platform/symbian/src/SymbianOS.h	2008-08-22 11:41:14 UTC (rev 34099)
@@ -72,9 +72,6 @@
 	static void symbianMixCallback(void *s, byte *samples, int len);
 
 	virtual FilesystemFactory *getFilesystemFactory();
-
-	virtual Common::SeekableReadStream *openConfigFileForReading();
-	virtual Common::WriteStream *openConfigFileForWriting();
 public:
 	// vibration support
 #ifdef USE_VIBRA_SE_PXXX


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