diff options
author | Lars Persson | 2010-11-29 20:02:15 +0000 |
---|---|---|
committer | Lars Persson | 2010-11-29 20:02:15 +0000 |
commit | 5fb635dabfda28deeeef4c3aa8508822b9eee88e (patch) | |
tree | c0ba158b0e319e5b45f929ee4adb58c091429cde | |
parent | 73cf5dba996e2011dde9196b4831227013adc7f8 (diff) | |
download | scummvm-rg350-5fb635dabfda28deeeef4c3aa8508822b9eee88e.tar.gz scummvm-rg350-5fb635dabfda28deeeef4c3aa8508822b9eee88e.tar.bz2 scummvm-rg350-5fb635dabfda28deeeef4c3aa8508822b9eee88e.zip |
SYMBIAN : Forgot to init the SDL backend
svn-id: r54590
-rw-r--r-- | backends/platform/symbian/src/SymbianOS.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/backends/platform/symbian/src/SymbianOS.cpp b/backends/platform/symbian/src/SymbianOS.cpp index 20bfe5b8ea..bccbec4a52 100644 --- a/backends/platform/symbian/src/SymbianOS.cpp +++ b/backends/platform/symbian/src/SymbianOS.cpp @@ -66,6 +66,7 @@ OSystem_SDL_Symbian::OSystem_SDL_Symbian() void OSystem_SDL_Symbian::init() { _RFs = &CEikonEnv::Static()->FsSession(); _fsFactory = new SymbianFilesystemFactory(); + OSystem_SDL::init(); } void OSystem_SDL_Symbian::initBackend() { |