diff options
author | Johannes Schickel | 2015-02-16 01:24:42 +0100 |
---|---|---|
committer | Johannes Schickel | 2015-02-16 01:25:22 +0100 |
commit | 3f22c12c56572d7c0b46e734179255062f81f45c (patch) | |
tree | 5a070061aa6aef0c1ddf8ce8d120bf45c163a811 /backends/platform/symbian | |
parent | 627d766325e1d435816648f85dbf9c007269b3f2 (diff) | |
download | scummvm-rg350-3f22c12c56572d7c0b46e734179255062f81f45c.tar.gz scummvm-rg350-3f22c12c56572d7c0b46e734179255062f81f45c.tar.bz2 scummvm-rg350-3f22c12c56572d7c0b46e734179255062f81f45c.zip |
SDL: Handle icon setup in SdlWindow.
Diffstat (limited to 'backends/platform/symbian')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 6 | ||||
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.h | 1 |
2 files changed, 2 insertions, 5 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 57903d3d26..e28b78900c 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -63,6 +63,8 @@ OSystem_SDL_Symbian::OSystem_SDL_Symbian() void OSystem_SDL_Symbian::init() { _RFs = &CEikonEnv::Static()->FsSession(); + // Use iconless window: it uses the EScummVM.aif file for the icon. + _window = new SdlIconlessWindow(); _fsFactory = new SymbianFilesystemFactory(); OSystem_SDL::init(); } @@ -171,10 +173,6 @@ Common::String OSystem_SDL_Symbian::getDefaultConfigFileName() { return configFile; } -void OSystem_SDL_Symbian::setupIcon() { - // Don't for Symbian: it uses the EScummVM.aif file for the icon. -} - RFs& OSystem_SDL_Symbian::FsSession() { return *_RFs; } diff --git a/backends/platform/symbian/src/SymbianOS.h b/backends/platform/symbian/src/SymbianOS.h index 57a471f1a9..617540941d 100644 --- a/backends/platform/symbian/src/SymbianOS.h +++ b/backends/platform/symbian/src/SymbianOS.h @@ -39,7 +39,6 @@ public: virtual void engineDone(); virtual bool setGraphicsMode(const char *name); virtual Common::String getDefaultConfigFileName(); - virtual void setupIcon(); /** * Returns reference to File session |