From 66f5a93a2e436c22db76e2073f91a1cd99cf8fbc Mon Sep 17 00:00:00 2001 From: DeadVoxelx Date: Tue, 28 Apr 2026 11:18:17 -0400 Subject: [PATCH] Update ItemInHandRenderer.cpp --- Minecraft.Client/ItemInHandRenderer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/ItemInHandRenderer.cpp b/Minecraft.Client/ItemInHandRenderer.cpp index 13d4fc20..959890da 100644 --- a/Minecraft.Client/ItemInHandRenderer.cpp +++ b/Minecraft.Client/ItemInHandRenderer.cpp @@ -53,9 +53,9 @@ ItemInHandRenderer::ItemInHandRenderer(Minecraft *minecraft, bool optimisedMinim for( int xp = 0; xp < 16; xp++ ) { float u = (15-xp) / 256.0f; - float v = (15-yp) / 256.0f; + float v = (15-yp) / 512.0f; u += 0.5f / 256.0f; - v += 0.5f / 256.0f; + v += 0.5f / 512.0f; float x0 = xp / 16.0f; float x1 = x0 + 1.0f/16.0f; float y0 = yp / 16.0f;