From a467af48cfea20e7b046a8a78d01280f4d259c9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jean-Andr=C3=A9=20Santoni?= Date: Sat, 31 Oct 2015 13:41:33 +0700 Subject: [PATCH] (XMB) Fix a display bug on 16:9 displays caused by an optimization --- menu/drivers/xmb.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index d78927db73..13dda49f5a 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -614,7 +614,7 @@ static void xmb_selection_pointer_changed(bool allow_animations) end = menu_entries_get_end(); tag = (uintptr_t)menu_list; - threshold = xmb->icon.size*10; + threshold = xmb->icon.size * 16; video_driver_get_size(NULL, &height); @@ -669,7 +669,7 @@ static void xmb_list_open_old(xmb_handle_t *xmb, file_list_t *list, int dir, size_t current) { unsigned i, height = 0; - int threshold = xmb->icon.size * 10; + int threshold = xmb->icon.size * 16; size_t end = 0; end = file_list_get_size(list);