From 527ecb6ce308ee8030cf820da0f3155bf01529cc Mon Sep 17 00:00:00 2001 From: yellows8 Date: Mon, 17 Jun 2019 19:27:59 -0400 Subject: [PATCH] Fixed regression caused by 8531833 where the gfx for the current active menu entry wasn't rendered in some cases. --- common/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/menu.c b/common/menu.c index e6b8b70..cc00267 100644 --- a/common/menu.c +++ b/common/menu.c @@ -625,7 +625,7 @@ void menuLoop(void) { if (is_active) active_entry = me; - if (entry_draw_x < -(29 + 140 + 30)) + if (!is_active && entry_draw_x < -(29 + 140 + 30)) continue; drawEntry(me, entry_draw_x, is_active);