From f5187eac916ac10bbe2f3c7f0b40675e912d17af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=99=88=E6=80=9D=E6=B5=B7?= <1464576565@qq.com> Date: Thu, 26 Mar 2026 19:07:30 +0800 Subject: [PATCH] fix --- Runtime/Debugger/DebuggerComponent.ScreenInformationWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/Debugger/DebuggerComponent.ScreenInformationWindow.cs b/Runtime/Debugger/DebuggerComponent.ScreenInformationWindow.cs index 44cff7e..a4d1eb7 100644 --- a/Runtime/Debugger/DebuggerComponent.ScreenInformationWindow.cs +++ b/Runtime/Debugger/DebuggerComponent.ScreenInformationWindow.cs @@ -62,7 +62,7 @@ namespace AlicizaX.Debugger.Runtime #if UNITY_6000_0_OR_NEWER return Utility.Text.Format("{0} x {1} @ {2}Hz", resolution.width, resolution.height, resolution.refreshRateRatio); #else - return Utility.Text.Format("{0} x {1} @ {2}Hz", resolution.width, resolution.height, resolution.refreshRate); + return Utility.Text.Format("{0} x {1} @ {2}Hz", resolution.width, resolution.height, resolution.refreshRateRatio); #endif }