From 38e25b16709c276843c1cccaf38c580630d7c3db Mon Sep 17 00:00:00 2001 From: KKNecmi Date: Sat, 7 Mar 2026 06:26:59 +0300 Subject: [PATCH] fix draw history --- Minecraft.Client/Gui.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Gui.cpp b/Minecraft.Client/Gui.cpp index 587b08e4e..ad390a5aa 100644 --- a/Minecraft.Client/Gui.cpp +++ b/Minecraft.Client/Gui.cpp @@ -1005,7 +1005,11 @@ void Gui::render(float a, bool mouseFree, int xMouse, int yMouse) this->fill(0, y - 3 - 1, screenWidth/fScaleFactorWidth, y + 10 - 1, bgColor); glEnable(GL_BLEND); - font->drawShadowLiteral(msg, iSafezoneXHalf+4, y + 0, 0xffffff + (alpha << 24)); + glPushMatrix(); + glTranslatef((float)(iSafezoneXHalf+4), (float)(y), 0); + glScalef(0.6f, 0.6f, 1.0f); + font->drawShadowLiteral(msg, 0, 0, 0xffffff + (alpha << 24)); + glPopMatrix(); } } }