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);
|
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;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue