aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/sdl
diff options
context:
space:
mode:
authorTarek Soliman2011-07-05 00:25:56 -0500
committerTarek Soliman2011-09-22 22:07:44 -0500
commit09b9fbfba9bb0cee15c50a95320d4b9174018e50 (patch)
tree8c41138813c752a8a08f8ca1c97f5b25f82fd6b6 /backends/platform/sdl
parent1439014a26aef0aa9c22ea3e26d6b0f5ad388d9b (diff)
downloadscummvm-rg350-09b9fbfba9bb0cee15c50a95320d4b9174018e50.tar.gz
scummvm-rg350-09b9fbfba9bb0cee15c50a95320d4b9174018e50.tar.bz2
scummvm-rg350-09b9fbfba9bb0cee15c50a95320d4b9174018e50.zip
MAEMO: Add basic platform backend with stubbed keymapper
Diffstat (limited to 'backends/platform/sdl')
-rw-r--r--backends/platform/sdl/main.cpp2
-rw-r--r--backends/platform/sdl/posix/posix-main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/backends/platform/sdl/main.cpp b/backends/platform/sdl/main.cpp
index 3947d010c4..040028079d 100644
--- a/backends/platform/sdl/main.cpp
+++ b/backends/platform/sdl/main.cpp
@@ -26,7 +26,7 @@
// of this file. The following "#if" ensures that.
#if !defined(POSIX) && \
!defined(WIN32) && \
- !defined(__MAEMO__) && \
+ !defined(MAEMO) && \
!defined(__SYMBIAN32__) && \
!defined(_WIN32_WCE) && \
!defined(__amigaos4__) && \
diff --git a/backends/platform/sdl/posix/posix-main.cpp b/backends/platform/sdl/posix/posix-main.cpp
index 3bf7a5138a..5f0914e04f 100644
--- a/backends/platform/sdl/posix/posix-main.cpp
+++ b/backends/platform/sdl/posix/posix-main.cpp
@@ -22,7 +22,7 @@
#include "common/scummsys.h"
-#if defined(POSIX) && !defined(MACOSX) && !defined(SAMSUNGTV) && !defined(WEBOS) && !defined(LINUXMOTO) && !defined(GPH_DEVICE) && !defined(GP2X) && !defined(DINGUX) && !defined(OPENPANDORA) && !defined(PLAYSTATION3)
+#if defined(POSIX) && !defined(MACOSX) && !defined(SAMSUNGTV) && !defined(MAEMO) && !defined(WEBOS) && !defined(LINUXMOTO) && !defined(GPH_DEVICE) && !defined(GP2X) && !defined(DINGUX) && !defined(OPENPANDORA) && !defined(PLAYSTATION3)
#include "backends/platform/sdl/posix/posix.h"
#include "backends/plugins/sdl/sdl-provider.h"