From fc1f21b8dc8c9269870fbf51e5253569e43f3b28 Mon Sep 17 00:00:00 2001 From: KKNecmi Date: Wed, 11 Mar 2026 07:46:35 +0300 Subject: [PATCH] write every pixel set bgfirst and bgsecond todo fix --- Minecraft.Client/Gui.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Minecraft.Client/Gui.cpp b/Minecraft.Client/Gui.cpp index 3d5bd7ef4..e3e52854c 100644 --- a/Minecraft.Client/Gui.cpp +++ b/Minecraft.Client/Gui.cpp @@ -1103,16 +1103,21 @@ void Gui::render(float a, bool mouseFree, int xMouse, int yMouse) if (uiSetting == 0) { - textScale = textScale * 1.5; - bgfirsty = 5; + textScale = textScale * 1.5; //20pixels wrong (correct is 21) + bgfirsty = 5; //15pixels correct + bgsecondy = 10; //10pixels wrong (correct is 14) } else if (uiSetting == 1) { - textScale = textScale * 1; + textScale = textScale * 1; //20 pixels wrong (correct is 21) + bgfirsty = 2; //9pixels wrong (correct is 15) + bgsecondy = 9; //20pixels wrong (correct is 14) } else if (uiSetting == 2) { - textScale = textScale * 0.75; + textScale = textScale * 0.75; //20 pixels wrong (correct is 21) + bgfirsty = 2; //12pixels wrong (correct is 15) + bgsecondy = 9; //34pixels wrong (correct is 14) } glPushMatrix();