diff options
author | Lars Persson | 2006-05-31 21:13:37 +0000 |
---|---|---|
committer | Lars Persson | 2006-05-31 21:13:37 +0000 |
commit | 72904c33545ec534e43108d5ecea7905b8137c42 (patch) | |
tree | 5bcefd893b6ce38aa593cd299f5de75dab4c8475 /backends/symbian/src | |
parent | 0044ef7be11e50c7b67b5564360a2955f9953eea (diff) | |
download | scummvm-rg350-72904c33545ec534e43108d5ecea7905b8137c42.tar.gz scummvm-rg350-72904c33545ec534e43108d5ecea7905b8137c42.tar.bz2 scummvm-rg350-72904c33545ec534e43108d5ecea7905b8137c42.zip |
Moved Symbian call to GUI::Actions::init(); to the Symbian backend
svn-id: r22811
Diffstat (limited to 'backends/symbian/src')
-rw-r--r-- | backends/symbian/src/SymbianOS.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/backends/symbian/src/SymbianOS.cpp b/backends/symbian/src/SymbianOS.cpp index 1bf08aa10b..0050d059a4 100644 --- a/backends/symbian/src/SymbianOS.cpp +++ b/backends/symbian/src/SymbianOS.cpp @@ -97,11 +97,14 @@ void OSystem_SDL_Symbian::initBackend() { #endif ConfMan.setInt("joystick_num", 0); // Symbian OS should have joystick_num set to 0 in the ini file , but uiq devices might refuse opening the joystick ConfMan.flushToDisk(); + + GUI::Actions::init(); OSystem_SDL::initBackend(); // Initialize global key mapping for Smartphones GUI::Actions* actions = GUI::Actions::Instance(); + actions->initInstanceMain(this); actions->loadMapping(); initZones(); |