mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-02-17 01:11:45 +00:00
fix the placement of the "paused" icon
This commit is contained in:
parent
01452ce5c8
commit
dbe0c763d5
1 changed files with 2 additions and 2 deletions
|
@ -271,8 +271,8 @@ SCR_DrawPause (void)
|
|||
return;
|
||||
|
||||
pic = Draw_CachePic ("gfx/pause.lmp", true);
|
||||
Draw_Pic ((vid.width - pic->width) / 2,
|
||||
(vid.height - 48 - pic->height) / 2, pic);
|
||||
Draw_Pic ((vid.conwidth - pic->width) / 2,
|
||||
(vid.conheight - 48 - pic->height) / 2, pic);
|
||||
}
|
||||
|
||||
void
|
||||
|
|
Loading…
Reference in a new issue