mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-31 01:00:53 +00:00
removal of Draw_TranPic. Thanks, Seth.
This commit is contained in:
parent
b948a6c004
commit
06ead88d9d
4 changed files with 60 additions and 130 deletions
|
@ -277,7 +277,7 @@ Sbar_DrawTransPic
|
|||
*/
|
||||
void Sbar_DrawTransPic (int x, int y, qpic_t *pic)
|
||||
{
|
||||
Draw_TransPic (x /*+ ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic);
|
||||
Draw_Pic (x /*+ ((vid.width - 320)>>1) */, y + (vid.height-SBAR_HEIGHT), pic);
|
||||
}
|
||||
|
||||
/*
|
||||
|
@ -887,7 +887,7 @@ void Sbar_IntermissionNumber (int x, int y, int num, int digits, int color)
|
|||
else
|
||||
frame = *ptr -'0';
|
||||
|
||||
Draw_TransPic (x,y,sb_nums[color][frame]);
|
||||
Draw_Pic (x,y,sb_nums[color][frame]);
|
||||
x += 24;
|
||||
ptr++;
|
||||
}
|
||||
|
@ -1330,7 +1330,7 @@ void Sbar_FinaleOverlay (void)
|
|||
scr_copyeverything = 1;
|
||||
|
||||
pic = Draw_CachePic ("gfx/finale.lmp");
|
||||
Draw_TransPic ( (vid.width-pic->width)/2, 16, pic);
|
||||
Draw_Pic ( (vid.width-pic->width)/2, 16, pic);
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue