From c78085864e78611d90ab5533cf833233a747869c Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 22 Jul 2011 00:09:58 -0700 Subject: [PATCH] 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. --- src/audio/SDL_sysaudio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/SDL_sysaudio.h b/src/audio/SDL_sysaudio.h index 19a68c4dd..dd5cea150 100644 --- a/src/audio/SDL_sysaudio.h +++ b/src/audio/SDL_sysaudio.h @@ -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 */