Mercurial > sdl-ios-xcode
changeset 3806:1485d42cf1a0 SDL-ryan-multiple-audio-device
Removed some FIXMEs that'll probably never actually need fixing.
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Wed, 04 Oct 2006 22:42:26 +0000 |
parents | ef7f7be318da |
children | da371472162f |
files | src/audio/SDL_audio.c src/audio/macosx/SDL_coreaudio.c src/audio/macrom/SDL_romaudio.c |
diffstat | 3 files changed, 1 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/src/audio/SDL_audio.c Wed Oct 04 22:23:57 2006 +0000 +++ b/src/audio/SDL_audio.c Wed Oct 04 22:42:26 2006 +0000 @@ -31,8 +31,6 @@ #define _THIS SDL_AudioDevice *this static SDL_AudioDriver current_audio; - -/* !!! FIXME: don't use a static array, but it's Good Enough For Now... */ static SDL_AudioDevice *open_devices[16]; /* !!! FIXME: These are wordy and unlocalized... */ @@ -713,7 +711,6 @@ } } - /* !!! FIXME: remove static array... */ if (id == SDL_arraysize(open_devices)) { SDL_SetError("Too many open audio devices"); close_audio_device(device);
--- a/src/audio/macosx/SDL_coreaudio.c Wed Oct 04 22:23:57 2006 +0000 +++ b/src/audio/macosx/SDL_coreaudio.c Wed Oct 04 22:42:26 2006 +0000 @@ -292,10 +292,7 @@ UInt32 remaining, len; void *ptr; - /* - * !!! FIXME: I'm not sure if you can ever have more than one - * buffer, or what this signifies, or what to do with it... - */ + /* Is there ever more than one buffer, and what do you do with it? */ if (ioDataList->mNumberBuffers != 1) { return noErr; }
--- a/src/audio/macrom/SDL_romaudio.c Wed Oct 04 22:23:57 2006 +0000 +++ b/src/audio/macrom/SDL_romaudio.c Wed Oct 04 22:42:26 2006 +0000 @@ -215,8 +215,6 @@ } SDL_memset(this->hidden, 0, (sizeof *this->hidden)); - /* !!! FIXME: check devname and iscapture... */ - /* !!! FIXME: iterate through format matrix... */ /* Very few conversions are required, but... */ switch (spec->format) {