From 3c4c5d93efb97c145eb0fc189080d5aec7be61b0 Mon Sep 17 00:00:00 2001 From: fruitiex Date: Sun, 11 Oct 2009 10:47:37 +0000 Subject: [PATCH] fix a stupid bug git-svn-id: svn://svn.icculus.org/nexuiz/trunk@8092 f962a42d-fe04-0410-a3ab-8c8b0445ebaa --- data/qcsrc/client/sbar.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/qcsrc/client/sbar.qc b/data/qcsrc/client/sbar.qc index a928915f1..47addb681 100644 --- a/data/qcsrc/client/sbar.qc +++ b/data/qcsrc/client/sbar.qc @@ -3043,7 +3043,7 @@ float srecordtime_change_time; // time when srecordtime last changed void CSQC_race_hud(void) { entity me; - me = (spectatee_status > 0) ? playerslots[spectatee_status - 1] : playerslots[player_localentnum - 1]; + me = playerslots[player_localentnum - 1]; float crecordtime, srecordtime, score; float f; // yet another function has this score = me.(scores[ps_primary]); -- 2.39.2