summaryrefslogtreecommitdiff
path: root/src/doom/am_map.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/doom/am_map.c')
-rw-r--r--src/doom/am_map.c3
1 files changed, 1 insertions, 2 deletions
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]);
}
}