From a7b5a2ce736eb7eb6b2da53a24bcaeb356d39c78 Mon Sep 17 00:00:00 2001 From: Thom Johansen Date: Wed, 22 Mar 2006 15:19:59 +0000 Subject: [PATCH] Quick fix for voice UI on iPods. Proper fix (which does not impact functionality in any way) coming later. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9190 a1c6a512-1295-4272-9138-f99709370657 --- apps/playback.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/playback.c b/apps/playback.c index ce0e326a4c..5c7bcac622 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -114,7 +114,11 @@ enum { #define GUARD_BUFSIZE (32*1024) /* As defined in plugin.lds */ +#if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002 +#define CODEC_IRAM_ORIGIN 0x4000c000 +#else #define CODEC_IRAM_ORIGIN 0x1000c000 +#endif #define CODEC_IRAM_SIZE 0xc000 extern bool audio_is_initialized;