aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/maemo/maemo.cpp
diff options
context:
space:
mode:
authorTarek Soliman2011-08-28 19:39:18 -0500
committerTarek Soliman2011-09-22 22:07:45 -0500
commit9aad73be5ef35065b8a9b63958b39184083e0700 (patch)
tree27800535a7d0c842e46b85db1754f8b3198362e1 /backends/platform/maemo/maemo.cpp
parentac207183635c1d8cc91c0c94de5f2900ad01a28c (diff)
downloadscummvm-rg350-9aad73be5ef35065b8a9b63958b39184083e0700.tar.gz
scummvm-rg350-9aad73be5ef35065b8a9b63958b39184083e0700.tar.bz2
scummvm-rg350-9aad73be5ef35065b8a9b63958b39184083e0700.zip
MAEMO: enable virtual keyboard and add keymapping
Diffstat (limited to 'backends/platform/maemo/maemo.cpp')
-rw-r--r--backends/platform/maemo/maemo.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/backends/platform/maemo/maemo.cpp b/backends/platform/maemo/maemo.cpp
index 8362c0785e..1fb7ad0691 100644
--- a/backends/platform/maemo/maemo.cpp
+++ b/backends/platform/maemo/maemo.cpp
@@ -23,11 +23,13 @@
#if defined(MAEMO)
#include "common/scummsys.h"
+#include "common/config-manager.h"
#include "backends/platform/maemo/maemo.h"
#include "backends/events/maemosdl/maemosdl-events.h"
#include "common/textconsole.h"
+
#include <SDL/SDL_syswm.h>
#include <X11/Xutil.h>
@@ -41,6 +43,8 @@ void OSystem_SDL_Maemo::initBackend() {
if (_eventSource == 0)
_eventSource = new MaemoSdlEventSource();
+ ConfMan.set("vkeybdpath", DATA_PATH);
+
// Call parent implementation of this method
OSystem_POSIX::initBackend();
}