Took out some more bitfields in the audio subsystem.

This commit is contained in:
Ryan C. Gordon 2011-07-22 16:09:13 -07:00
parent 6bd5c1b002
commit 26f05bd076

View file

@ -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;