diff options
author | Tim Angus <tim@ngus.net> | 2002-03-22 05:09:05 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2002-03-22 05:09:05 +0000 |
commit | b32f0fa9fd74a9cfa65f1197898b59142def161d (patch) | |
tree | 1ed731a11e57f418a78bc8f3e3260e621a6d1e21 /src/cgame | |
parent | eaeff9ea91eae4755453396aafe30e6946c81262 (diff) |
Hud per class specified in bg_misc.c. Skin entry in class db now honoured
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 42eebdbe..bd497cc5 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -2075,8 +2075,11 @@ static void CG_Draw2D( void ) { if( cg_drawStatus.integer ) { - Menu_PaintAll(); + /*Menu_PaintAll();*/ /*CG_DrawTimedMenus();*/ + Menu_Paint( + Menus_FindByName( + BG_FindHudNameForClass( cg.predictedPlayerState.stats[ STAT_PCLASS ] ) ), qtrue ); } CG_DrawAmmoWarning(); |