Took out some more bitfields in the audio subsystem.
This commit is contained in:
parent
6bd5c1b002
commit
26f05bd076
1 changed files with 5 additions and 5 deletions
|
@ -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;
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue