Changed my mind about my prior decision to comment out crosshair
drawing, forgot to readd it when I fixed it :V
This commit is contained in:
TehRealSalt 2018-01-24 17:00:22 -05:00
parent 33350eb2a8
commit e27a60847e
1 changed files with 11 additions and 9 deletions

View File

@ -1212,18 +1212,20 @@ void HU_Drawer(void)
return; return;
// draw the crosshair, not when viewing demos nor with chasecam // draw the crosshair, not when viewing demos nor with chasecam
// SRB2kart: not for kart though :V if (!automapactive && !demoplayback)
/*if (!automapactive && cv_crosshair.value && !demoplayback && !camera.chase && !players[displayplayer].spectator) {
HU_DrawCrosshair(); if (cv_crosshair.value && !camera.chase && !players[displayplayer].spectator)
HU_DrawCrosshair();
if (!automapactive && cv_crosshair2.value && !demoplayback && !camera2.chase && !players[secondarydisplayplayer].spectator) if (cv_crosshair2.value && !camera2.chase && !players[secondarydisplayplayer].spectator)
HU_DrawCrosshair2(); HU_DrawCrosshair2();
if (!automapactive && cv_crosshair3.value && !demoplayback && !camera3.chase && !players[thirddisplayplayer].spectator) if (cv_crosshair3.value && !camera3.chase && !players[thirddisplayplayer].spectator)
HU_DrawCrosshair3(); HU_DrawCrosshair3();
if (!automapactive && cv_crosshair4.value && !demoplayback && !camera4.chase && !players[fourthdisplayplayer].spectator) if (cv_crosshair4.value && !camera4.chase && !players[fourthdisplayplayer].spectator)
HU_DrawCrosshair4();*/ HU_DrawCrosshair4();
}
// draw desynch text // draw desynch text
if (hu_resynching) if (hu_resynching)