From 6f50faf16117dea5bda87b66057832d026db2403 Mon Sep 17 00:00:00 2001 From: mazmazz Date: Sun, 4 Aug 2019 00:15:15 -0400 Subject: [PATCH] Fix HWR_DrawConsoleFill call extra input --- src/v_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/v_video.c b/src/v_video.c index 85f22eccb..cc9040f04 100644 --- a/src/v_video.c +++ b/src/v_video.c @@ -1374,7 +1374,7 @@ void V_DrawFillConsoleMap(INT32 x, INT32 y, INT32 w, INT32 h, INT32 c) if (rendermode != render_soft && rendermode != render_none) { UINT32 hwcolor = V_GetHWConsBackColor(); - HWR_DrawConsoleFill(x, y, w, h, hwcolor, c); // we still use the regular color stuff but only for flags. actual draw color is "hwcolor" for this. + HWR_DrawConsoleFill(x, y, w, h, hwcolor); // we still use the regular color stuff but only for flags. actual draw color is "hwcolor" for this. return; } #endif