Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Took out some more bitfields in the audio subsystem.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Jul 22, 2011
1 parent e53a150 commit bc3d2ea
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/audio/SDL_sysaudio.h
Expand Up @@ -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;


Expand Down

0 comments on commit bc3d2ea

Please sign in to comment.