Fixed regression caused by 8531833 where the gfx for the current active menu entry wasn't rendered in some cases.

This commit is contained in:
yellows8 2019-06-17 19:27:59 -04:00
parent 85318335fb
commit 527ecb6ce3
No known key found for this signature in database
GPG Key ID: 0AF90DA3F1E60E43

View File

@ -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);