diff --git a/nq/include/client.h b/nq/include/client.h index f8ddb4a08..50d6b4ccf 100644 --- a/nq/include/client.h +++ b/nq/include/client.h @@ -58,7 +58,6 @@ typedef struct float entertime; int frags; int colors; // two 4 bit fields - int _colors; } scoreboard_t; diff --git a/qw/include/client.h b/qw/include/client.h index 4b74b3fc0..41418e68f 100644 --- a/qw/include/client.h +++ b/qw/include/client.h @@ -79,8 +79,6 @@ typedef struct player_info_s struct info_key_s *team; struct skin_s *skin; - int _topcolor; - int _bottomcolor; int spectator; int stats[MAX_CL_STATS]; // health, etc diff --git a/qw/source/cl_parse.c b/qw/source/cl_parse.c index fca097dc7..06ffb9852 100644 --- a/qw/source/cl_parse.c +++ b/qw/source/cl_parse.c @@ -1097,7 +1097,6 @@ CL_ProcessUserInfo (int slot, player_info_t *player) else Info_SetValueForKey (player->userinfo, "name", "", 1); } - player->_topcolor = player->_bottomcolor = -1; player->topcolor = atoi (Info_ValueForKey (player->userinfo, "topcolor")); player->bottomcolor = atoi (Info_ValueForKey (player->userinfo, "bottomcolor"));