From: terencehill Date: Sat, 28 May 2011 06:37:04 +0000 (+0200) Subject: Fix stupid typo... should fix occasional crashes X-Git-Tag: xonotic-v0.5.0~216 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=ec91b041bb051470efb5ae7c0358a77a64c26253;p=xonotic%2Fxonotic-data.pk3dir.git Fix stupid typo... should fix occasional crashes --- diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 44ce25192..d5ad7c8a0 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4354,7 +4354,7 @@ void centerprint(string strMessage) { if(centerprint_messages[j]) strunzone(centerprint_messages[j]); - centerprint_messages[j] == strzone(msg_without_CPID(strMessage)); + centerprint_messages[j] = strzone(msg_without_CPID(strMessage)); centerprint_time[j] = time; return; }