mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-26 22:31:05 +00:00
oops, got a little too agressive with the V_CheckGamma cleanup
This commit is contained in:
parent
964ec6425d
commit
05f9470b7c
4 changed files with 4 additions and 4 deletions
|
@ -156,7 +156,7 @@ V_UpdatePalette (void)
|
|||
if (cl.cshifts[CSHIFT_BONUS].percent < 0)
|
||||
cl.cshifts[CSHIFT_BONUS].percent = 0;
|
||||
|
||||
if (!new)
|
||||
if (!new && !vid.recalc_refdef)
|
||||
return;
|
||||
|
||||
V_CalcBlend ();
|
||||
|
|
|
@ -91,7 +91,7 @@ V_UpdatePalette (void)
|
|||
if (cl.cshifts[CSHIFT_BONUS].percent < 0)
|
||||
cl.cshifts[CSHIFT_BONUS].percent = 0;
|
||||
|
||||
if (!new)
|
||||
if (!new && !vid.recalc_refdef)
|
||||
return;
|
||||
|
||||
basepal = vid_basepal;
|
||||
|
|
|
@ -158,7 +158,7 @@ V_UpdatePalette (void)
|
|||
if (cl.cshifts[CSHIFT_BONUS].percent < 0)
|
||||
cl.cshifts[CSHIFT_BONUS].percent = 0;
|
||||
|
||||
if (!new)
|
||||
if (!new && !vid.recalc_refdef)
|
||||
return;
|
||||
|
||||
V_CalcBlend ();
|
||||
|
|
|
@ -93,7 +93,7 @@ V_UpdatePalette (void)
|
|||
if (cl.cshifts[CSHIFT_BONUS].percent < 0)
|
||||
cl.cshifts[CSHIFT_BONUS].percent = 0;
|
||||
|
||||
if (!new)
|
||||
if (!new && !vid.recalc_refdef)
|
||||
return;
|
||||
|
||||
basepal = vid_basepal;
|
||||
|
|
Loading…
Reference in a new issue