aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/maemo
diff options
context:
space:
mode:
Diffstat (limited to 'backends/platform/maemo')
-rwxr-xr-xbackends/platform/maemo/debian/rules1
-rw-r--r--backends/platform/maemo/maemo.cpp4
2 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/maemo/debian/rules b/backends/platform/maemo/debian/rules
index 018f53bb11..7613df25b4 100755
--- a/backends/platform/maemo/debian/rules
+++ b/backends/platform/maemo/debian/rules
@@ -45,6 +45,7 @@ install: build
install -m0644 -d debian/scummvm/opt/scummvm/share
install -m0644 dists/pred.dic debian/scummvm/opt/scummvm/share
install -m0644 gui/themes/scummclassic.zip gui/themes/scummmodern.zip debian/scummvm/opt/scummvm/share
+ install -m0644 backends/vkeybd/packs/vkeybd_default.zip debian/scummvm/opt/scummvm/share
# for optified version we can also add engine datafiles
install -m0644 dists/engine-data/drascula.dat dists/engine-data/hugo.dat dists/engine-data/kyra.dat dists/engine-data/lure.dat dists/engine-data/m4.dat dists/engine-data/mads.dat dists/engine-data/queen.tbl dists/engine-data/sky.cpt dists/engine-data/teenagent.dat dists/engine-data/toon.dat debian/scummvm/opt/scummvm/share
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();
}