From 25b5595bc506df79ecc00189c0e10571c2f9f3a5 Mon Sep 17 00:00:00 2001 From: Shinovon Date: Sun, 3 May 2026 07:31:40 +0500 Subject: [PATCH] Enable fps limiter --- src/skel/symbian/symbian.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/skel/symbian/symbian.cpp b/src/skel/symbian/symbian.cpp index 7416920..d424acc 100644 --- a/src/skel/symbian/symbian.cpp +++ b/src/skel/symbian/symbian.cpp @@ -379,10 +379,10 @@ 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)tickPeriod; //(float)CTimer::GetCyclesPerMillisecond(); // if ( RwInitialised ) // { -// if (!CMenuManager::m_PrefsFrameLimiter || (1000.0f / (float)RsGlobal.maxFPS) < ms) + if (!CMenuManager::m_PrefsFrameLimiter || (1000.0f / (float)RsGlobal.maxFPS) < ms) RsEventHandler(rsIDLE, (void *)TRUE); // } break;