From e390136fd151bfa813d250357815d4f38b1f927c Mon Sep 17 00:00:00 2001 From: Tim Angus Date: Mon, 1 Sep 2003 17:37:17 +0000 Subject: * Exorcised gitem_t --- src/cgame/cg_local.h | 3 +-- src/cgame/cg_main.c | 9 ++++----- 2 files changed, 5 insertions(+), 7 deletions(-) (limited to 'src/cgame') diff --git a/src/cgame/cg_local.h b/src/cgame/cg_local.h index 366758d1..4fc20bd3 100644 --- a/src/cgame/cg_local.h +++ b/src/cgame/cg_local.h @@ -418,7 +418,6 @@ typedef struct typedef struct weaponInfo_s { qboolean registered; - gitem_t *item; char *humanName; qhandle_t handsModel; // the hands don't actually draw, they just position the weapon @@ -473,7 +472,7 @@ typedef struct typedef struct { - qhandle_t models[ MAX_ITEM_MODELS ]; + qhandle_t models[ MAX_BUILDABLE_MODELS ]; animation_t animations[ MAX_BUILDABLE_ANIMATIONS ]; //same number of sounds as animations diff --git a/src/cgame/cg_main.c b/src/cgame/cg_main.c index cab4cda3..22db4dba 100644 --- a/src/cgame/cg_main.c +++ b/src/cgame/cg_main.c @@ -1385,11 +1385,10 @@ static clientInfo_t * CG_InfoFromScoreIndex( int index, int team, int *scoreInde static const char *CG_FeederItemText( float feederID, int index, int column, qhandle_t *handle ) { - gitem_t *item; - int scoreIndex = 0; - clientInfo_t *info = NULL; - int team = -1; - score_t *sp = NULL; + int scoreIndex = 0; + clientInfo_t *info = NULL; + int team = -1; + score_t *sp = NULL; *handle = -1; -- cgit