* Fix some new GCC 4.3 warnings
* Fix many many strict aliasing warnings, now that it's re-enabled
This commit is contained in:
parent
7c19978aaa
commit
72dea0a184
19 changed files with 220 additions and 152 deletions
|
@ -5239,9 +5239,16 @@ qboolean MenuParse_name( itemDef_t *item, int handle ) {
|
|||
|
||||
qboolean MenuParse_fullscreen( itemDef_t *item, int handle ) {
|
||||
menuDef_t *menu = (menuDef_t*)item;
|
||||
if (!PC_Int_Parse(handle, (int*) &menu->fullScreen)) {
|
||||
union
|
||||
{
|
||||
qboolean b;
|
||||
int i;
|
||||
} fullScreen;
|
||||
|
||||
if (!PC_Int_Parse(handle, &fullScreen.i)) {
|
||||
return qfalse;
|
||||
}
|
||||
menu->fullScreen = fullScreen.b;
|
||||
return qtrue;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue