From c8f0e8939ba40f4131d820082b429e1f235098e4 Mon Sep 17 00:00:00 2001 From: Fayaz Shaikh <61674751+fayaz12g@users.noreply.github.com> Date: Tue, 3 Mar 2026 23:21:42 -0500 Subject: [PATCH] Remove UI resize call from `UpdateAspectRatio` --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index b477148a4..e5b57d9a3 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -100,10 +100,6 @@ static WINDOWPLACEMENT g_wpPrev = { sizeof(g_wpPrev) }; void UpdateAspectRatio(int width, int height) { g_iAspectRatio = (float)width / (float)height; - // printf("Window resized to: %d x %d, aspect ratio: %.2f\n", width, height, g_iAspectRatio); - - // Update the UI components as well - ui.resize(width, height); } void DefineActions(void)