From a74ea585db58ebf26a6895fa3e31dd036da30a00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Wed, 10 Jun 2015 09:36:25 -0300 Subject: [PATCH] (XMB) Fix icon zoom when theres only one collection --- 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 3b71a75fe3..6a239e0bee 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -2037,7 +2037,7 @@ static void xmb_toggle_horizontal_list(xmb_handle_t *xmb, menu_handle_t *menu) unsigned i; size_t list_size = xmb_list_get_size(menu, MENU_LIST_HORIZONTAL); - for (i = 0; i < list_size; i++) + for (i = 0; i <= list_size; i++) { xmb_node_t *node = &xmb->settings_node;