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
This commit is contained in:
Michael Sevakis 2006-11-18 03:06:46 +00:00
parent acc29d95be
commit 514f45bc1c

View file

@ -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