From 8dfb9b9ba6156cd65f1e96a620180008b1aecbd1 Mon Sep 17 00:00:00 2001 From: ITotalJustice <47043333+ITotalJustice@users.noreply.github.com> Date: Thu, 1 May 2025 00:04:32 +0100 Subject: [PATCH] reduce time for scrolling text from 1.5s to 1s. --- sphaira/source/ui/scrolling_text.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphaira/source/ui/scrolling_text.cpp b/sphaira/source/ui/scrolling_text.cpp index 380dc44..5854702 100644 --- a/sphaira/source/ui/scrolling_text.cpp +++ b/sphaira/source/ui/scrolling_text.cpp @@ -42,7 +42,7 @@ void ScrollingText::Draw(NVGcontext* vg, bool focus, float x, float y, float w, if (!m_text_xoff) { m_tick++; - if (m_tick >= 90) { + if (m_tick >= 60) { m_tick = 0; m_text_xoff += scroll_amount; }