Commit 26f05bd0 authored by Ryan C. Gordon's avatar Ryan C. Gordon

Took out some more bitfields in the audio subsystem.

parent 6bd5c1b0
...@@ -46,11 +46,11 @@ typedef struct SDL_AudioDriverImpl ...@@ -46,11 +46,11 @@ typedef struct SDL_AudioDriverImpl
void (*Deinitialize) (void); void (*Deinitialize) (void);
/* 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:1; int ProvidesOwnCallbackThread;
int SkipMixerLock:1; int SkipMixerLock;
int HasCaptureSupport:1; int HasCaptureSupport;
int OnlyHasDefaultOutputDevice:1; int OnlyHasDefaultOutputDevice;
int OnlyHasDefaultInputDevice:1; int OnlyHasDefaultInputDevice;
} SDL_AudioDriverImpl; } SDL_AudioDriverImpl;
......
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