mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-10 14:42:06 +00:00
Ghost crosshair is DEAD.
Who ya gonna call?
This commit is contained in:
parent
775c727aba
commit
036d5ac2c7
3 changed files with 5 additions and 2 deletions
|
@ -39,6 +39,8 @@
|
|||
#define BMODEL_FULLY_CLIPPED 0x10 // value returned by R_BmodelCheckBBox ()
|
||||
// if bbox is trivially rejected
|
||||
|
||||
extern cvar_t *crosshair;
|
||||
|
||||
//===========================================================================
|
||||
// viewmodel lighting
|
||||
|
||||
|
|
|
@ -1264,6 +1264,9 @@ void SCR_UpdateScreen (void)
|
|||
}
|
||||
else
|
||||
{
|
||||
if (crosshair->value)
|
||||
Draw_Crosshair ();
|
||||
|
||||
SCR_DrawRam ();
|
||||
SCR_DrawNet ();
|
||||
SCR_DrawTurtle ();
|
||||
|
|
|
@ -1042,8 +1042,6 @@ cl.simangles[ROLL] = 0; // FIXME
|
|||
R_RenderView ();
|
||||
#endif
|
||||
|
||||
if (crosshair->value)
|
||||
Draw_Crosshair();
|
||||
}
|
||||
|
||||
//============================================================================
|
||||
|
|
Loading…
Reference in a new issue