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 }