From 8e7ab3dfffe3cec8716f0842c0c9dca152402eb7 Mon Sep 17 00:00:00 2001 From: Linus Nielsen Feltzing Date: Fri, 9 Mar 2007 09:27:13 +0000 Subject: Fix the sim build git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12692 a1c6a512-1295-4272-9138-f99709370657 --- apps/talk.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/apps/talk.c b/apps/talk.c index 1854e92cbd..370604f923 100644 --- a/apps/talk.c +++ b/apps/talk.c @@ -80,7 +80,9 @@ const char* const file_thumbnail_ext = ".talk"; #define MAX_THUMBNAIL_BUFSIZE 32768 #endif +#ifndef SIMULATOR extern bool audio_is_initialized; +#endif /***************** Data types *****************/ @@ -180,9 +182,11 @@ static void load_voicefile(void) load_size = file_size; #endif +#ifndef SIMULATOR /* Wait until the audio is initialized before continuing */ while(!audio_is_initialized) sleep(HZ/100); +#endif got_size = read(filehandle, audiobuf, load_size); if (got_size != load_size /* failure */) -- cgit v1.2.3