From b4bd11137907407ccb5c52e00ae6701ea116404f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Rydg=C3=A5rd?= Date: Thu, 21 Aug 2025 15:02:12 +0200 Subject: [PATCH] Oops, left a test value behind in the frame rate check --- UI/NativeApp.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/NativeApp.cpp b/UI/NativeApp.cpp index ff3832345d..8da6049971 100644 --- a/UI/NativeApp.cpp +++ b/UI/NativeApp.cpp @@ -876,7 +876,7 @@ bool NativeInitGraphics(GraphicsContext *graphicsContext) { // Warn about low refresh rates on desktop. Might add other platforms later. #if PPSSPP_PLATFORM(WINDOWS) || PPSSPP_PLATFORM(MAC) const double displayHz = System_GetPropertyFloat(SYSPROP_DISPLAY_REFRESH_RATE); - if (displayHz < 355.0f) { + if (displayHz < 55.0f) { // This is a warning, not an error. auto g = GetI18NCategory(I18NCat::GRAPHICS); g_OSD.Show(OSDType::MESSAGE_WARNING, ApplySafeSubstitutions(g->T("Your display is set to a low refresh rate: %1 Hz. 60 Hz or higher is recommended."), (int)displayHz), 8.0f, "low_refresh");