Mercurial > sdl-ios-xcode
diff src/audio/SDL_audio.c @ 262:ba5363e21df8
Don't allow multiple audio opens to succeed (until SDL 1.3)
author | Sam Lantinga <slouken@libsdl.org> |
---|---|
date | Wed, 09 Jan 2002 16:04:58 +0000 |
parents | e8157fcb3114 |
children | f6ffac90895c |
line wrap: on
line diff
--- a/src/audio/SDL_audio.c Fri Jan 04 20:48:51 2002 +0000 +++ b/src/audio/SDL_audio.c Wed Jan 09 16:04:58 2002 +0000 @@ -336,6 +336,11 @@ } audio = current_audio; + if (audio->opened) { + SDL_SetError("Audio device is already opened"); + return(-1); + } + /* Verify some parameters */ if ( desired->callback == NULL ) { SDL_SetError("SDL_OpenAudio() passed a NULL callback");