From 7ea74548b1f6000f11d94543eca4311a59f32daa Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 14 May 2019 14:52:40 +0200 Subject: [PATCH] Reduce duration of easing out bounce otherwise we get glitches --- 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 8500f73de8..133eeaa36a 100644 --- a/menu/drivers/xmb.c +++ b/menu/drivers/xmb.c @@ -1722,7 +1722,7 @@ static void xmb_list_switch_horizontal_list(xmb_handle_t *xmb) entry.easing_enum = EASING_IN_SINE; break; case 2: - entry.duration = XMB_DELAY * 4; + entry.duration = XMB_DELAY * 2; entry.easing_enum = EASING_OUT_BOUNCE; break; }