From 6c1d7c074d069a97777fbe6d38273f481c806a08 Mon Sep 17 00:00:00 2001 From: nhmall Date: Thu, 4 Jun 2026 15:54:11 -0400 Subject: [PATCH] follow-up: do the flush_screen(0) at end always --- src/display.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/display.c b/src/display.c index e1e301905..ffb9b2cbc 100644 --- a/src/display.c +++ b/src/display.c @@ -1327,10 +1327,10 @@ tmp_at(coordxy x, coordxy y) tglyph->sidx = 1; } - if (!suppress_show) { + if (!suppress_show) show_glyph(x, y, tglyph->glyph); /* show it */ - flush_screen(0); /* make sure it shows up */ - } + + flush_screen(0); /* make sure it shows up */ break; } /* end switch */ }