mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-31 05:00:35 +00:00
sbar.c:
whitespace sv_main.c: fix a silly mis-cast that caused the runes to not be displayed in the client
This commit is contained in:
parent
f6575ca262
commit
c60d333610
2 changed files with 1 additions and 2 deletions
|
@ -1,4 +1,3 @@
|
|||
|
||||
/*
|
||||
sbar.c
|
||||
|
||||
|
|
|
@ -650,7 +650,7 @@ SV_WriteClientdataToMessage (edict_t *ent, sizebuf_t *msg)
|
|||
items = (int) SVFIELD (ent, items, float) | ((int) val->float_var << 23);
|
||||
else
|
||||
items =
|
||||
(int) SVFIELD (ent, items, float) | ((int) sv_globals.serverflags << 28);
|
||||
(int) SVFIELD (ent, items, float) | ((int) *sv_globals.serverflags << 28);
|
||||
#endif
|
||||
|
||||
bits |= SU_ITEMS;
|
||||
|
|
Loading…
Reference in a new issue