From baba7667a9b9ee87d0edf9cb4112dcbd9d9ea14d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Thu, 11 Jun 2015 11:54:28 -0300 Subject: [PATCH] (XMB) Fix icon zoom --- menu/drivers/xmb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/menu/drivers/xmb.c b/menu/drivers/xmb.c index cdeb31dfcc..529b97a65a 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -790,7 +790,7 @@ static void xmb_list_switch_horizontal_list(xmb_handle_t *xmb, menu_handle_t *me unsigned j; size_t list_size = xmb_list_get_size(menu, MENU_LIST_HORIZONTAL); - for (j = 0; j < list_size; j++) + for (j = 0; j <= list_size; j++) { float ia = xmb->categories.passive.alpha; float iz = xmb->categories.passive.zoom;