Skip to content

Commit

Permalink
No crosshair in cutscenes
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-drexler committed Aug 4, 2024
1 parent 3b57ae2 commit b37eaed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Quake/gl_screen.c
Original file line number Diff line number Diff line change
Expand Up @@ -1042,7 +1042,7 @@ SCR_DrawCrosshair -- johnfitz
*/
void SCR_DrawCrosshair (void)
{
if (!crosshair.value || scr_viewsize.value >= 130)
if (cl.intermission || CL_InCutscene () || !crosshair.value || scr_viewsize.value >= 130)
return;

GL_SetCanvas (CANVAS_CROSSHAIR);
Expand Down

0 comments on commit b37eaed

Please sign in to comment.