From cb4c334c162601fa2e2675e293e2e4c7a6ae57e4 Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 20 Sep 2008 19:46:11 +0000 Subject: Add I_VideoBuffer variable for pointer to screen buffer used by i_video.c code. Make V_CopyRect always blit to the screen. Subversion-branch: /branches/raven-branch Subversion-revision: 1245 --- src/doom/st_lib.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/doom/st_lib.c') diff --git a/src/doom/st_lib.c b/src/doom/st_lib.c index 11299a91..5c9a9d0c 100644 --- a/src/doom/st_lib.c +++ b/src/doom/st_lib.c @@ -123,7 +123,7 @@ STlib_drawNum if (n->y - ST_Y < 0) I_Error("drawNum: n->y - ST_Y < 0"); - V_CopyRect(x, n->y - ST_Y, BG, w*numdigits, h, x, n->y, FG); + V_CopyRect(x, n->y - ST_Y, screens[BG], w*numdigits, h, x, n->y); // if non-number, do not draw it if (num == 1994) @@ -233,7 +233,7 @@ STlib_updateMultIcon if (y - ST_Y < 0) I_Error("updateMultIcon: y - ST_Y < 0"); - V_CopyRect(x, y-ST_Y, BG, w, h, x, y, FG); + V_CopyRect(x, y-ST_Y, screens[BG], w, h, x, y); } V_DrawPatch(mi->x, mi->y, FG, mi->p[*mi->inum]); mi->oldinum = *mi->inum; @@ -285,7 +285,7 @@ STlib_updateBinIcon if (*bi->val) V_DrawPatch(bi->x, bi->y, FG, bi->p); else - V_CopyRect(x, y-ST_Y, BG, w, h, x, y, FG); + V_CopyRect(x, y-ST_Y, screens[BG], w, h, x, y); bi->oldval = *bi->val; } -- cgit v1.2.3