This commit is contained in:
陈思海 2026-03-26 19:07:30 +08:00
parent 1690ac7005
commit f5187eac91

View File

@ -62,7 +62,7 @@ namespace AlicizaX.Debugger.Runtime
#if UNITY_6000_0_OR_NEWER #if UNITY_6000_0_OR_NEWER
return Utility.Text.Format("{0} x {1} @ {2}Hz", resolution.width, resolution.height, resolution.refreshRateRatio); return Utility.Text.Format("{0} x {1} @ {2}Hz", resolution.width, resolution.height, resolution.refreshRateRatio);
#else #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 #endif
} }