From e2e163c6e3fc1db2df6da1d4ed831fe6629e180b Mon Sep 17 00:00:00 2001 From: Simon Howard Date: Sat, 20 Sep 2008 20:32:24 +0000 Subject: Remove screen parameter from V_DrawPatch functions; update code to use V_UseBuffer where necessary. Subversion-branch: /branches/raven-branch Subversion-revision: 1248 --- src/doom/hu_lib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/doom/hu_lib.c') diff --git a/src/doom/hu_lib.c b/src/doom/hu_lib.c index 5d8428ba..c7c62d06 100644 --- a/src/doom/hu_lib.c +++ b/src/doom/hu_lib.c @@ -121,7 +121,7 @@ HUlib_drawTextLine w = SHORT(l->f[c - l->sc]->width); if (x+w > SCREENWIDTH) break; - V_DrawPatchDirect(x, l->y, FG, l->f[c - l->sc]); + V_DrawPatchDirect(x, l->y, l->f[c - l->sc]); x += w; } else @@ -136,7 +136,7 @@ HUlib_drawTextLine if (drawcursor && x + SHORT(l->f['_' - l->sc]->width) <= SCREENWIDTH) { - V_DrawPatchDirect(x, l->y, FG, l->f['_' - l->sc]); + V_DrawPatchDirect(x, l->y, l->f['_' - l->sc]); } } -- cgit v1.2.3