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
void (*Deinitialize) (void);
/* Some flags to push duplicate code into the core and reduce #ifdefs. */
int ProvidesOwnCallbackThread:1;
int SkipMixerLock:1;
int HasCaptureSupport:1;
int OnlyHasDefaultOutputDevice:1;
int OnlyHasDefaultInputDevice:1;
int ProvidesOwnCallbackThread;
int SkipMixerLock;
int HasCaptureSupport;
int OnlyHasDefaultOutputDevice;
int OnlyHasDefaultInputDevice;
} 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