diff options
| author | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-31 19:29:21 +0000 |
|---|---|---|
| committer | Andree Buschmann <AndreeBuschmann@t-online.de> | 2011-08-31 19:29:21 +0000 |
| commit | 89ee297314c91c22c19e79fdc62dd73b26eff6b8 (patch) | |
| tree | 1528254ef083aa0a16d245d4b89be3e6275f8bcd /apps | |
| parent | 13cbade08a07296d92e7a7d3e20475de0032cba1 (diff) | |
| download | rockbox-89ee297314c91c22c19e79fdc62dd73b26eff6b8.zip rockbox-89ee297314c91c22c19e79fdc62dd73b26eff6b8.tar.gz rockbox-89ee297314c91c22c19e79fdc62dd73b26eff6b8.tar.bz2 rockbox-89ee297314c91c22c19e79fdc62dd73b26eff6b8.tar.xz | |
Check for CPU_ARM in libgme/blip_buffer.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30398 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/codecs/libgme/blip_buffer.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/libgme/blip_buffer.h b/apps/codecs/libgme/blip_buffer.h index d73a14b..5fe1f4b 100644 --- a/apps/codecs/libgme/blip_buffer.h +++ b/apps/codecs/libgme/blip_buffer.h @@ -311,7 +311,7 @@ static int const blip_reader_default_bass = 9; //// BLIP_CLAMP -#if ARM_ARCH >= 6 +#if defined(CPU_ARM) && (ARM_ARCH >= 6) #define BLIP_CLAMP( sample, out ) \ ({ \ asm ("ssat %0, #16, %1" \ |