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