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/am_map.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/doom/am_map.c') diff --git a/src/doom/am_map.c b/src/doom/am_map.c index 9b662ac2..e2b84e6d 100644 --- a/src/doom/am_map.c +++ b/src/doom/am_map.c @@ -89,7 +89,6 @@ #define XHAIRCOLORS GRAYS // drawing stuff -#define FB 0 #define AM_PANDOWNKEY KEY_DOWNARROW #define AM_PANUPKEY KEY_UPARROW @@ -1342,7 +1341,7 @@ void AM_drawMarks(void) fx = CXMTOF(markpoints[i].x); fy = CYMTOF(markpoints[i].y); if (fx >= f_x && fx <= f_w - w && fy >= f_y && fy <= f_h - h) - V_DrawPatch(fx, fy, FB, marknums[i]); + V_DrawPatch(fx, fy, marknums[i]); } } -- cgit v1.2.3