Mercurial > sdl-ios-xcode
diff src/audio/SDL_audio.c @ 3975:e85e65aec22f SDL-1.2
Added S60 port.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Sun, 24 Jun 2007 18:26:35 +0000 |
parents | 42e83d81224b |
children | 8582c6a5ca16 |
line wrap: on
line diff
--- a/src/audio/SDL_audio.c Thu Jun 21 18:48:13 2007 +0000 +++ b/src/audio/SDL_audio.c Sun Jun 24 18:26:35 2007 +0000 @@ -107,6 +107,9 @@ #if SDL_AUDIO_DRIVER_DART &DART_bootstrap, #endif +#if SDL_AUDIO_DRIVER_EPOCAUDIO + &EPOCAudio_bootstrap, +#endif NULL }; SDL_AudioDevice *current_audio = NULL; @@ -545,7 +548,7 @@ switch (audio->opened) { case 1: /* Start the audio thread */ -#if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC) +#if (defined(__WIN32__) && !defined(_WIN32_WCE)) && !defined(HAVE_LIBC) && !defined(__SYMBIAN32__) #undef SDL_CreateThread audio->thread = SDL_CreateThread(SDL_RunAudio, audio, NULL, NULL); #else