diff options
author | Linus Nielsen Feltzing <linus@haxx.se> | 2006-08-23 14:02:35 +0000 |
---|---|---|
committer | Linus Nielsen Feltzing <linus@haxx.se> | 2006-08-23 14:02:35 +0000 |
commit | dd98c219e00a9afe5fd498d54459fb6a21919fdd (patch) | |
tree | 0be30dec81e3b4ef0a9e90dd8260060bc73d2412 /apps/playback.c | |
parent | 9f09a394368a8fb2fb0da7840535ce9cd5583ee0 (diff) |
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
Diffstat (limited to 'apps/playback.c')
-rw-r--r-- | apps/playback.c | 2 |
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 { /* As defined in plugin.lds */ #if CONFIG_CPU == PP5020 || CONFIG_CPU == PP5002 #define CODEC_IRAM_ORIGIN 0x4000c000 +#elif defined(IAUDIO_X5) +#define CODEC_IRAM_ORIGIN 0x10014000 #else #define CODEC_IRAM_ORIGIN 0x1000c000 #endif |