diff options
author | Michael Sevakis <jethead71@rockbox.org> | 2006-11-18 03:06:46 +0000 |
---|---|---|
committer | Michael Sevakis <jethead71@rockbox.org> | 2006-11-18 03:06:46 +0000 |
commit | 514f45bc1cf848ac2f651af9508fd9a8f52ef3ae (patch) | |
tree | fc69275a55009903ff40c36e0d924296e200f69a | |
parent | acc29d95be85c9cfd0d8f74dda813d7d1082e2ec (diff) |
Changed #ifdef USE_IRAM to #ifdef IRAM_STEAL. Also want to check if results are the same again since another person also built a red one successfully.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11545 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | firmware/export/audio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/audio.h b/firmware/export/audio.h index 573252e938..4875d621f0 100644 --- a/firmware/export/audio.h +++ b/firmware/export/audio.h @@ -103,7 +103,7 @@ void audio_beep(int duration); void audio_init_playback(void); /* Required call when audio buffer is require for some other purpose */ unsigned char *audio_get_buffer(bool talk_buf, size_t *buffer_size); -#ifdef USE_IRAM +#ifdef IRAM_STEAL /* Required call when codec IRAM is needed for some other purpose */ void audio_iram_steal(void); #endif |