From 126adfc39231e2fdf9b0f4dd3630abad10763395 Mon Sep 17 00:00:00 2001 From: Jelle Raaijmakers Date: Fri, 6 Oct 2023 01:17:11 +0200 Subject: [PATCH] 3DFileViewer: Set timer to 15ms instead of 20ms This approaches 60FPS and feels a bit smoother. --- Userland/Applications/3DFileViewer/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/3DFileViewer/main.cpp b/Userland/Applications/3DFileViewer/main.cpp index d771486b6a..a5d72cca4a 100644 --- a/Userland/Applications/3DFileViewer/main.cpp +++ b/Userland/Applications/3DFileViewer/main.cpp @@ -61,7 +61,7 @@ private: m_context = MUST(GL::create_context(*m_bitmap)); m_framerate_timer = Core::ElapsedTimer::start_new(); - start_timer(20); + start_timer(15); GL::make_context_current(m_context); glFrontFace(GL_CCW);