mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 08:40:39 +00:00
disable transparent pixels in the conback. They will still currently be black,
but at least they won't flicker on some drivers.
This commit is contained in:
parent
2bb4a60a69
commit
20b9411bcc
9 changed files with 64 additions and 64 deletions
|
@ -891,7 +891,7 @@ Sbar_TeamOverlay (void)
|
|||
scr_copyeverything = 1;
|
||||
scr_fullupdate = 0;
|
||||
|
||||
pic = Draw_CachePic ("gfx/ranking.lmp");
|
||||
pic = Draw_CachePic ("gfx/ranking.lmp", true);
|
||||
Draw_Pic (160 - pic->width / 2, 0, pic);
|
||||
|
||||
y = 24;
|
||||
|
@ -992,7 +992,7 @@ Sbar_DeathmatchOverlay (int start)
|
|||
scr_fullupdate = 0;
|
||||
|
||||
if (!start) {
|
||||
pic = Draw_CachePic ("gfx/ranking.lmp");
|
||||
pic = Draw_CachePic ("gfx/ranking.lmp", true);
|
||||
Draw_Pic (160 - pic->width / 2, 0, pic);
|
||||
}
|
||||
// scores
|
||||
|
@ -1278,6 +1278,6 @@ Sbar_FinaleOverlay (void)
|
|||
|
||||
scr_copyeverything = 1;
|
||||
|
||||
pic = Draw_CachePic ("gfx/finale.lmp");
|
||||
pic = Draw_CachePic ("gfx/finale.lmp", true);
|
||||
Draw_Pic ((vid.width - pic->width) / 2, 16, pic);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue