From b310f7081f59b3be3e490c958f32759c8294174a Mon Sep 17 00:00:00 2001 From: Shinovon Date: Sun, 3 May 2026 08:09:10 +0500 Subject: [PATCH] Fix fps limiter --- src/skel/symbian/symbian.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/skel/symbian/symbian.cpp b/src/skel/symbian/symbian.cpp index d424acc..3934353 100644 --- a/src/skel/symbian/symbian.cpp +++ b/src/skel/symbian/symbian.cpp @@ -379,7 +379,7 @@ public: break; case GS_PLAYING_GAME: if (!IsForegroundApp()) break; - float ms = (float)CTimer::GetCurrentTimeInCycles() / (float)tickPeriod; //(float)CTimer::GetCyclesPerMillisecond(); + float ms = (float)CTimer::GetCurrentTimeInCycles() / (float)CTimer::GetCyclesPerMillisecond(); // if ( RwInitialised ) // { if (!CMenuManager::m_PrefsFrameLimiter || (1000.0f / (float)RsGlobal.maxFPS) < ms)