mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 09:22:43 +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
|
if (!scr_showpause->int_val) // turn off for screenshots
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (r_paused)
|
if (!r_paused)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
||||||
|
|
|
@ -499,7 +499,7 @@ SCR_DrawPause (int swap)
|
||||||
if (!scr_showpause->int_val) // turn off for screenshots
|
if (!scr_showpause->int_val) // turn off for screenshots
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (r_paused)
|
if (!r_paused)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
||||||
|
|
Loading…
Reference in a new issue