mirror of
https://github.com/yawut/SDL.git
synced 2026-09-10 18:16:19 -05:00
Don't use a bitfield for this.
It pads out to an int anyhow, but causes code bloat as the compiler tries to mask and shift for that specific bit.
This commit is contained in:
@@ -120,7 +120,7 @@ typedef struct AudioBootStrap
|
||||
const char *name;
|
||||
const char *desc;
|
||||
int (*init) (SDL_AudioDriverImpl * impl);
|
||||
int demand_only:1; /* 1==request explicitly, or it won't be available. */
|
||||
int demand_only; /* 1==request explicitly, or it won't be available. */
|
||||
} AudioBootStrap;
|
||||
|
||||
#endif /* _SDL_sysaudio_h */
|
||||
|
||||
Reference in New Issue
Block a user