# HG changeset patch # User Ryan C. Gordon # Date 1160001746 0 # Node ID 1485d42cf1a0c096953d1684ba51ce45c2c5525d # Parent ef7f7be318da085de543f06018b5ea7b5a6cb442 Removed some FIXMEs that'll probably never actually need fixing. diff -r ef7f7be318da -r 1485d42cf1a0 src/audio/SDL_audio.c --- 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); diff -r ef7f7be318da -r 1485d42cf1a0 src/audio/macosx/SDL_coreaudio.c --- 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; } diff -r ef7f7be318da -r 1485d42cf1a0 src/audio/macrom/SDL_romaudio.c --- 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) {