From 3a2264e4df0b19c869ccdd7960055629f1075665 Mon Sep 17 00:00:00 2001 From: Adubbz Date: Sat, 24 Feb 2018 19:35:38 +1100 Subject: [PATCH] Vertically centered the text in the icon cards --- common/menu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/menu.c b/common/menu.c index 3ee2862..1f58251 100644 --- a/common/menu.c +++ b/common/menu.c @@ -182,7 +182,7 @@ static void drawEntry(menuEntry_s* me, int off_x, int is_active) { } } - DrawTextTruncate(interuiregular14, start_x + 8, start_y + 8, MakeColor(64, 64, 64, 255), me->name, 140 - 32, "..."); + DrawTextTruncate(interuiregular14, start_x + 4, start_y + 4, MakeColor(64, 64, 64, 255), me->name, 140 - 32, "..."); if (is_active) { start_x = 1280 - 790;