diff options
author | Matthew Hoops | 2010-06-29 01:59:10 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-06-29 01:59:10 +0000 |
commit | cd5546f1d16c9efe471206846ddfdcd3b81f4f63 (patch) | |
tree | 3f96176e692bc5c733f5d5d69bfb20b6e5ae31ad /backends/platform/symbian | |
parent | 06290230d5ac664bdad864d9181fb9c9b3358af2 (diff) | |
download | scummvm-rg350-cd5546f1d16c9efe471206846ddfdcd3b81f4f63.tar.gz scummvm-rg350-cd5546f1d16c9efe471206846ddfdcd3b81f4f63.tar.bz2 scummvm-rg350-cd5546f1d16c9efe471206846ddfdcd3b81f4f63.zip |
Override setupIcon() for both Mac OS X and SymbianOS, they have their own icons.
svn-id: r50476
Diffstat (limited to 'backends/platform/symbian')
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 4 | ||||
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 2195b897d1..abb067e60b 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -178,6 +178,10 @@ 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 4faec71865..6c89779e89 100644 --- a/backends/platform/symbian/src/SymbianOS.h +++ b/backends/platform/symbian/src/SymbianOS.h @@ -42,6 +42,7 @@ public: void engineDone(); bool setGraphicsMode(const char *name); Common::String getDefaultConfigFileName(); + void setupIcon(); // Returns reference to File session RFs& FsSession(); |