From b96a11c5f86dd900c4f75ecb27a1a3bbf0f99889 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Higor=20Eur=C3=ADpedes?= Date: Tue, 23 Jun 2015 17:06:04 -0300 Subject: [PATCH] (XMB) Fix typo --- 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 d01997b02a..1c26a40d8a 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -688,7 +688,7 @@ static void xmb_list_open_old(xmb_handle_t *xmb, if (dir == -1) ia = 0; - real_y = node->y + + xmb->margins.screen.top; + real_y = node->y + xmb->margins.screen.top; if (real_y < -threshold || real_y > height+threshold) { @@ -739,7 +739,7 @@ static void xmb_list_open_new(xmb_handle_t *xmb, node->y = xmb_item_y(xmb, i, current); node->zoom = xmb->categories.passive.zoom; - real_y = node->y + + xmb->margins.screen.top; + real_y = node->y + xmb->margins.screen.top; if (i == current) node->zoom = xmb->categories.active.zoom;