aboutsummaryrefslogtreecommitdiff
path: root/backends
diff options
context:
space:
mode:
authorChris Apers2004-09-12 15:07:31 +0000
committerChris Apers2004-09-12 15:07:31 +0000
commit89ae0de009b5d310e053cd5b5264be9b6e05aab5 (patch)
treef5f02e94b8fc756e57a614d56a6e3068efc65166 /backends
parentbc369ce6e27a689409034a7a6d839bbdd029bf9c (diff)
downloadscummvm-rg350-89ae0de009b5d310e053cd5b5264be9b6e05aab5.tar.gz
scummvm-rg350-89ae0de009b5d310e053cd5b5264be9b6e05aab5.tar.bz2
scummvm-rg350-89ae0de009b5d310e053cd5b5264be9b6e05aab5.zip
Not used
svn-id: r15070
Diffstat (limited to 'backends')
-rw-r--r--backends/PalmOS/Src/snd_pa1.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/backends/PalmOS/Src/snd_pa1.cpp b/backends/PalmOS/Src/snd_pa1.cpp
index 4a430a827b..133d112c8a 100644
--- a/backends/PalmOS/Src/snd_pa1.cpp
+++ b/backends/PalmOS/Src/snd_pa1.cpp
@@ -1,4 +1,4 @@
-#include "ARMNative.h"
+#include "native.h"
#include "stdlib.h"
#include "globals.h"
@@ -25,7 +25,7 @@ static int limit(int val,int min,int max) {
void pcm2adpcm(Int16 *src, UInt8 *dst, UInt32 length) {
#ifndef COMPILE_PA1SND
-
+/*
if (OPTIONS_TST(kOptDeviceARM)) {
PnoDescriptor pno;
ARMPa1SndType userData = {src, dst, length};
@@ -36,7 +36,7 @@ void pcm2adpcm(Int16 *src, UInt8 *dst, UInt32 length) {
return;
}
-
+*/
int data,val,diff;
int signal,step;
#else