3DFileViewer: Set timer to 15ms instead of 20ms

This approaches 60FPS and feels a bit smoother.
This commit is contained in:
Jelle Raaijmakers 2023-10-06 01:17:11 +02:00
parent 77c16d2ae7
commit 126adfc392
Notes: sideshowbarker 2024-07-17 03:27:40 +09:00

View file

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