Skip to content

Commit

Permalink
Pause fuzz effect when game paused
Browse files Browse the repository at this point in the history
  • Loading branch information
bradharding committed Oct 15, 2024
1 parent 14c4cbb commit e38288c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/r_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1172,7 +1172,7 @@ void R_RenderPlayerView(void)

R_DrawPlanes();

if (consoleactive || freeze)
if (consoleactive || paused || freeze)
{
M_Fuzz1Seed(0);
M_Fuzz2Seed(0);
Expand Down

0 comments on commit e38288c

Please sign in to comment.