reduce time for scrolling text from 1.5s to 1s.

This commit is contained in:
ITotalJustice
2025-05-01 00:04:32 +01:00
parent 7cf36cd25f
commit 8dfb9b9ba6

View File

@@ -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;
}