From 9eb12dd95c565f3246b7d57b4fd3e91befb69002 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Tue, 9 Nov 2010 21:46:13 +0100 Subject: [PATCH] add a new way to enable fullbright for those poor people who REALLY need it (easy to detect serverside) --- qcsrc/client/View.qc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qcsrc/client/View.qc b/qcsrc/client/View.qc index 235b3aedf0..e4891caad1 100644 --- a/qcsrc/client/View.qc +++ b/qcsrc/client/View.qc @@ -566,7 +566,7 @@ void CSQC_UpdateView(float w, float h) // next R_RenderScene call drawstring('0 0 0', "", '1 1 0', '1 1 1', 0, 0); - if(cvar("r_fakelight") >= 2 || cvar("r_fullbright")) + if(cvar("r_fakelight") >= 2 || cvar("r_fullbright") >= 1) { // apply night vision effect vector rgb, tc_00, tc_01, tc_10, tc_11; -- 2.39.2