From 4d27443f335ef2ab22d5f6ba670e9ec879bff3f2 Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Wed, 30 Nov 2016 18:15:13 +0000 Subject: [PATCH] emulationstation - add additional scroll speed tier, and slow down fastest speed --- es-core/src/components/IList.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/es-core/src/components/IList.h b/es-core/src/components/IList.h index 85d806496..ede3360a9 100644 --- a/es-core/src/components/IList.h +++ b/es-core/src/components/IList.h @@ -36,10 +36,11 @@ struct ScrollTierList // default scroll tiers const ScrollTier QUICK_SCROLL_TIERS[] = { {500, 500}, - {5000, 114}, - {0, 8} + {2000, 114}, + {4000, 32}, + {0, 16} }; -const ScrollTierList LIST_SCROLL_STYLE_QUICK = { 3, QUICK_SCROLL_TIERS }; +const ScrollTierList LIST_SCROLL_STYLE_QUICK = { 4, QUICK_SCROLL_TIERS }; const ScrollTier SLOW_SCROLL_TIERS[] = { {500, 500},