removal of Draw_TranPic. Thanks, Seth.

This commit is contained in:
Bill Currie 2000-11-19 21:34:27 +00:00
parent b948a6c004
commit 06ead88d9d
4 changed files with 60 additions and 130 deletions

View file

@ -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);
}