aboutsummaryrefslogtreecommitdiff
path: root/Minecraft.Client/Common/UI/UIController.cpp
diff options
context:
space:
mode:
authordaoge_cmd <3523206925@qq.com>2026-03-01 21:32:42 +0800
committerdaoge_cmd <3523206925@qq.com>2026-03-01 21:32:42 +0800
commit7e3bdebd77680cd6e474d495f6a8bb27ddac2ecd (patch)
tree0e20f24a9c54cb415e459bffc1d6168c9472f11d /Minecraft.Client/Common/UI/UIController.cpp
parent515f8e6fa7a2d47a5dfcb94b282069df44343628 (diff)
fix: do not use hardcoded screen size
Diffstat (limited to 'Minecraft.Client/Common/UI/UIController.cpp')
-rw-r--r--Minecraft.Client/Common/UI/UIController.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Minecraft.Client/Common/UI/UIController.cpp b/Minecraft.Client/Common/UI/UIController.cpp
index 241f6835..8c336088 100644
--- a/Minecraft.Client/Common/UI/UIController.cpp
+++ b/Minecraft.Client/Common/UI/UIController.cpp
@@ -176,7 +176,7 @@ UIController::UIController()
#if defined _WINDOWS64 || defined _DURANGO || defined __ORBIS__
m_fScreenWidth = 1920.0f;
m_fScreenHeight = 1080.0f;
- m_bScreenWidthSetup = true;
+ m_bScreenWidthSetup = false;
#else
m_fScreenWidth = 1280.0f;
m_fScreenHeight = 720.0f;