summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2006-08-23 14:02:35 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2006-08-23 14:02:35 +0000
commitdd98c219e00a9afe5fd498d54459fb6a21919fdd (patch)
tree0be30dec81e3b4ef0a9e90dd8260060bc73d2412
parent9f09a394368a8fb2fb0da7840535ce9cd5583ee0 (diff)
downloadrockbox-dd98c219e00a9afe5fd498d54459fb6a21919fdd.tar.gz
rockbox-dd98c219e00a9afe5fd498d54459fb6a21919fdd.zip
Quick and dirty fix for a serious issue that could make X5 crash when using voice
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10721 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/playback.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/playback.c b/apps/playback.c
index 8d211cfc7c..b4cc58b73d 100644
--- a/apps/playback.c
+++ b/apps/playback.c
@@ -147,6 +147,8 @@ enum {
147/* As defined in plugin.lds */ 147/* As defined in plugin.lds */
148#if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002 148#if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002
149#define CODEC_IRAM_ORIGIN 0x4000c000 149#define CODEC_IRAM_ORIGIN 0x4000c000
150#elif defined(IAUDIO_X5)
151#define CODEC_IRAM_ORIGIN 0x10014000
150#else 152#else
151#define CODEC_IRAM_ORIGIN 0x1000c000 153#define CODEC_IRAM_ORIGIN 0x1000c000
152#endif 154#endif