summaryrefslogtreecommitdiff
path: root/src/cgame
diff options
context:
space:
mode:
authorMikko Tiusanen <ams@daug.net>2014-08-01 20:35:04 +0300
committerMikko Tiusanen <ams@daug.net>2014-08-02 02:51:25 +0300
commitfc765f5f146627d282b4374dd0c575895d64a900 (patch)
tree25ec1f349984922938a0963a6b066b89021593d4 /src/cgame
parentdf45dd254c4b26f3e0fdb140e370e532f626f8f1 (diff)
Fixed the drawing order of alien, human stages in spectator view.
Fixed the stage counters for stages 4 and 5. Reset default values for human stage thresholds to half of what aliens got.
Diffstat (limited to 'src/cgame')
-rw-r--r--src/cgame/cg_draw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c
index 2ec205f..6af1375 100644
--- a/src/cgame/cg_draw.c
+++ b/src/cgame/cg_draw.c
@@ -1746,7 +1746,7 @@ static void CG_DrawStageReport( rectDef_t *rect, float text_x, float text_y,
if( cg.snap->ps.stats[ STAT_TEAM ] == TEAM_NONE )
// return;
{
- Com_sprintf( s, MAX_TOKEN_CHARS, " %d [ye2]HUMANS |STAGE| ALIENS[Ye] %d ", cgs.humanStage + 1 , cgs.alienStage + 1);
+ Com_sprintf( s, MAX_TOKEN_CHARS, " %d [ye2]ALIENS |STAGE| HUMANS[Ye] %d ", cgs.alienStage + 1 , cgs.humanStage + 1);
}