mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
fixed paused being displayed by default in gl
This commit is contained in:
parent
1a25bc9349
commit
3cc3392a8a
2 changed files with 2 additions and 2 deletions
|
@ -499,7 +499,7 @@ SCR_DrawPause (int swap)
|
|||
if (!scr_showpause->int_val) // turn off for screenshots
|
||||
return;
|
||||
|
||||
if (r_paused)
|
||||
if (!r_paused)
|
||||
return;
|
||||
|
||||
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
||||
|
|
|
@ -499,7 +499,7 @@ SCR_DrawPause (int swap)
|
|||
if (!scr_showpause->int_val) // turn off for screenshots
|
||||
return;
|
||||
|
||||
if (r_paused)
|
||||
if (!r_paused)
|
||||
return;
|
||||
|
||||
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
||||
|
|
Loading…
Reference in a new issue