From bcf12744d2a4e2dd5a27325ac11dd5ce4d8e2547 Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Sun, 22 Dec 2024 02:34:16 -0300 Subject: [PATCH] set default interpolation to 60 --- src/port/Engine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/port/Engine.cpp b/src/port/Engine.cpp index 57ca68ff..d8c9da22 100644 --- a/src/port/Engine.cpp +++ b/src/port/Engine.cpp @@ -335,7 +335,7 @@ void GameEngine::ProcessGfxCommands(Gfx* commands) { wnd->SetRendererUCode(UcodeHandlers::ucode_f3dex); std::vector> mtx_replacements; - int target_fps = CVarGetInteger("gInterpolationFPS", 20); + int target_fps = CVarGetInteger("gInterpolationFPS", 60); static int last_fps; static int last_update_rate; static int time;