Override setupIcon() for both Mac OS X and SymbianOS, they have their own icons.

svn-id: r50476
This commit is contained in:
Matthew Hoops 2010-06-29 01:59:10 +00:00
parent 06290230d5
commit cd5546f1d1
4 changed files with 10 additions and 0 deletions

View file

@ -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;
}

View file

@ -42,6 +42,7 @@ public:
void engineDone();
bool setGraphicsMode(const char *name);
Common::String getDefaultConfigFileName();
void setupIcon();
// Returns reference to File session
RFs& FsSession();