mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Why does the scoreboard need the pic? It doesn't now!
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@457 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
809bc88707
commit
f3b305b600
1 changed files with 3 additions and 2 deletions
|
@ -1669,8 +1669,9 @@ void Sbar_TeamOverlay (void)
|
|||
scr_copyeverything = 1;
|
||||
scr_fullupdate = 0;
|
||||
|
||||
pic = Draw_CachePic ("gfx/ranking.lmp");
|
||||
Draw_Pic ((vid.width-pic->width)/2, 0, pic);
|
||||
pic = Draw_SafeCachePic ("gfx/ranking.lmp");
|
||||
if (pic)
|
||||
Draw_Pic ((vid.width-pic->width)/2, 0, pic);
|
||||
|
||||
y = 24;
|
||||
x = (vid.width - 320)/2 + 36;
|
||||
|
|
Loading…
Reference in a new issue