Commit a5d345e3 authored by Ryan C. Gordon's avatar Ryan C. Gordon

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.
parent 4b70200b
......@@ -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 */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment