From c46005fac01be68d45238a9344375fff5425f9a2 Mon Sep 17 00:00:00 2001 From: Michael Gernoth Date: Thu, 24 Jan 2008 18:09:38 +0100 Subject: [PATCH] draw a solid overlay, when requested --- src/sim/g_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sim/g_map.c b/src/sim/g_map.c index 667cfae..1d2cb9e 100644 --- a/src/sim/g_map.c +++ b/src/sim/g_map.c @@ -470,7 +470,7 @@ drawRect(SimView *view, int pixel, int solid, image += 3; } } else { - if (stipple++ & 1) { + if (solid || stipple++ & 1) { *(image++) = (pixel >> 0) & 0xff; *(image++) = (pixel >> 8) & 0xff; *(image++) = (pixel >> 16) & 0xff; -- 2.39.2