diff options
author | Max Horn | 2006-10-22 15:42:29 +0000 |
---|---|---|
committer | Max Horn | 2006-10-22 15:42:29 +0000 |
commit | 07f7761479eba5defdcfe0bd300bc438d9245551 (patch) | |
tree | 1d5d2ca4852369e9e5502b015926ab3e2ec4429f /backends/platform/PalmOS | |
parent | df24f1ef4ed2b8d0e6c5df6e1bfbbcb2fc86d2a8 (diff) | |
download | scummvm-rg350-07f7761479eba5defdcfe0bd300bc438d9245551.tar.gz scummvm-rg350-07f7761479eba5defdcfe0bd300bc438d9245551.tar.bz2 scummvm-rg350-07f7761479eba5defdcfe0bd300bc438d9245551.zip |
Backend modularization: Create timer manager, savefile manager and audio mixer in the backends for increased flexibility
svn-id: r24443
Diffstat (limited to 'backends/platform/PalmOS')
-rw-r--r-- | backends/platform/PalmOS/Src/be_base.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/backends/platform/PalmOS/Src/be_base.cpp b/backends/platform/PalmOS/Src/be_base.cpp index ea3f28a45f..ad28299193 100644 --- a/backends/platform/PalmOS/Src/be_base.cpp +++ b/backends/platform/PalmOS/Src/be_base.cpp @@ -83,6 +83,8 @@ void OSystem_PalmBase::initBackend() { int_initBackend(); _keyMouseMask = (_keyMouse.bitUp | _keyMouse.bitDown | _keyMouse.bitLeft | _keyMouse.bitRight | _keyMouse.bitButLeft); + + OSystem::initBackend(); } uint32 OSystem_PalmBase::getMillis() { |