Mercurial > sdl-ios-xcode
changeset 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 | 1c5f68da5fc2 |
children | 63e391bd7085 |
files | src/audio/SDL_audio.c |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
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");