diff options
author | Max Horn | 2010-11-18 17:45:07 +0000 |
---|---|---|
committer | Max Horn | 2010-11-18 17:45:07 +0000 |
commit | c02a2330849946b77070af8aa955ab1fef810f88 (patch) | |
tree | 6e2c7880f0d9428eac4945a4a946f6b8daedf54a /backends | |
parent | 7444a06c61749dcaf90a68233c78e26540377913 (diff) | |
download | scummvm-rg350-c02a2330849946b77070af8aa955ab1fef810f88.tar.gz scummvm-rg350-c02a2330849946b77070af8aa955ab1fef810f88.tar.bz2 scummvm-rg350-c02a2330849946b77070af8aa955ab1fef810f88.zip |
DS: Add note that ARM_ADPCM is unused (and fix a typo)
svn-id: r54335
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/ds/arm9/source/cdaudio.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/backends/platform/ds/arm9/source/cdaudio.cpp b/backends/platform/ds/arm9/source/cdaudio.cpp index 069f0fc09e..a69aedc91d 100644 --- a/backends/platform/ds/arm9/source/cdaudio.cpp +++ b/backends/platform/ds/arm9/source/cdaudio.cpp @@ -254,7 +254,12 @@ void update() { } #ifdef ARM_ADPCM -extern "C" void ARM_adcpm(int *block, int len, int stepTableIndex, +// FIXME: This code, as well as the source file adpcm_arm.s, are +// apparently unused. Maybe that is a mistake? Or maybe there is a bug +// in ARM_adpcm (then this should be reported and fixed). Or maybe there +// are other good reasons to prefer the C code, but then this as well as +// the assembler source file should be removed. +extern "C" void ARM_adpcm(int *block, int len, int stepTableIndex, int firstSample, s16 *decompressionBuffer); #endif |