diff options
| author | Max Horn | 2008-08-22 11:41:14 +0000 | 
|---|---|---|
| committer | Max Horn | 2008-08-22 11:41:14 +0000 | 
| commit | a237ba75bcb5a143cec73d2affaef23df7e64b7c (patch) | |
| tree | cf78b92d8cd369aace6155e3a8f477bbc0eddf22 /backends/platform | |
| parent | b727ac880d237cbe10284c2da9db25998ab6eb11 (diff) | |
| download | scummvm-rg350-a237ba75bcb5a143cec73d2affaef23df7e64b7c.tar.gz scummvm-rg350-a237ba75bcb5a143cec73d2affaef23df7e64b7c.tar.bz2 scummvm-rg350-a237ba75bcb5a143cec73d2affaef23df7e64b7c.zip  | |
Symbian backend does not have to implement config file methods, as long as they are identical to those in the SDL backend...
svn-id: r34099
Diffstat (limited to 'backends/platform')
| -rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 21 | ||||
| -rw-r--r-- | backends/platform/symbian/src/SymbianOS.h | 3 | 
2 files changed, 0 insertions, 24 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 5da3493b33..33d18d9037 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -134,27 +134,6 @@ static Common::String getDefaultConfigFileName() {  	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 }, diff --git a/backends/platform/symbian/src/SymbianOS.h b/backends/platform/symbian/src/SymbianOS.h index 07e6d158a4..cabfa51486 100644 --- a/backends/platform/symbian/src/SymbianOS.h +++ b/backends/platform/symbian/src/SymbianOS.h @@ -72,9 +72,6 @@ protected:  	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  | 
