From 114c91679e68b5fc8cd0b28b906b48d1a123ec18 Mon Sep 17 00:00:00 2001 From: Leon Styhre Date: Mon, 18 Oct 2021 19:58:04 +0200 Subject: [PATCH] Increased the start delay slightly for the scraper GUI game name scrolling. --- es-core/src/components/ComponentList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/es-core/src/components/ComponentList.cpp b/es-core/src/components/ComponentList.cpp index 849e90195..1457e3d14 100644 --- a/es-core/src/components/ComponentList.cpp +++ b/es-core/src/components/ComponentList.cpp @@ -178,7 +178,7 @@ void ComponentList::update(int deltaTime) // Loop the text. const float speed{ Font::get(FONT_SIZE_MEDIUM)->sizeText("ABCDEFGHIJKLMNOPQRSTUVWXYZ").x * 0.247f}; - const float delay{1300.0f}; + const float delay{1500.0f}; const float scrollLength{rowWidth}; const float returnLength{speed * 1.5f}; const float scrollTime{(scrollLength * 1000.0f) / speed};