Commit 0dea877a authored by Ryan C. Gordon's avatar Ryan C. Gordon

Added some FIXMEs.

parent 26f05bd0
...@@ -45,9 +45,11 @@ typedef struct SDL_AudioDriverImpl ...@@ -45,9 +45,11 @@ typedef struct SDL_AudioDriverImpl
void (*UnlockDevice) (_THIS); void (*UnlockDevice) (_THIS);
void (*Deinitialize) (void); void (*Deinitialize) (void);
/* !!! FIXME: add pause(), so we can optimize instead of mixing silence. */
/* Some flags to push duplicate code into the core and reduce #ifdefs. */ /* Some flags to push duplicate code into the core and reduce #ifdefs. */
int ProvidesOwnCallbackThread; int ProvidesOwnCallbackThread;
int SkipMixerLock; int SkipMixerLock; /* !!! FIXME: do we need this anymore? */
int HasCaptureSupport; int HasCaptureSupport;
int OnlyHasDefaultOutputDevice; int OnlyHasDefaultOutputDevice;
int OnlyHasDefaultInputDevice; int OnlyHasDefaultInputDevice;
......
...@@ -113,6 +113,7 @@ QSA_CheckBuggyCards(_THIS, unsigned long checkfor) ...@@ -113,6 +113,7 @@ QSA_CheckBuggyCards(_THIS, unsigned long checkfor)
return 0; return 0;
} }
/* !!! FIXME: does this need to be here? Does the SDL version not work? */
static void static void
QSA_ThreadInit(_THIS) QSA_ThreadInit(_THIS)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment