aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/wince/Makefile
diff options
context:
space:
mode:
authorRobin Watts2009-07-21 19:39:24 +0000
committerRobin Watts2009-07-21 19:39:24 +0000
commit64ebb586cdd3ab2f2fb34b51cc89a9f4b8d5cc54 (patch)
tree7d6019263ab56893d9812d8a92cb28adf098c83a /backends/platform/wince/Makefile
parent3a3e7acf5190b1231211dcaa9ac5273623ed9a3a (diff)
downloadscummvm-rg350-64ebb586cdd3ab2f2fb34b51cc89a9f4b8d5cc54.tar.gz
scummvm-rg350-64ebb586cdd3ab2f2fb34b51cc89a9f4b8d5cc54.tar.bz2
scummvm-rg350-64ebb586cdd3ab2f2fb34b51cc89a9f4b8d5cc54.zip
Add ARM code implementation of Scaler2x, and enable it for the WinCE
port. svn-id: r42645
Diffstat (limited to 'backends/platform/wince/Makefile')
-rw-r--r--backends/platform/wince/Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/backends/platform/wince/Makefile b/backends/platform/wince/Makefile
index 1846029469..9ac431c595 100644
--- a/backends/platform/wince/Makefile
+++ b/backends/platform/wince/Makefile
@@ -76,6 +76,7 @@ USE_ARM_SOUND_ASM = 1
USE_ARM_SMUSH_ASM = 1
USE_ARM_GFX_ASM = 1
USE_ARM_COSTUME_ASM = 1
+USE_ARM_SCALER_ASM = 1
########################################################################
## Hopefully you shouldn't need to change anything below here. ##
@@ -167,6 +168,10 @@ ifdef USE_ARM_COSTUME_ASM
DEFINES += -DUSE_ARM_COSTUME_ASM
endif
+ifdef USE_ARM_SCALER_ASM
+DEFINES += -DUSE_ARM_SCALER_ASM
+endif
+
########################################################################
# Targets follow here