From cd6959b9897ed1ab79209204c673ed283f7c8ea9 Mon Sep 17 00:00:00 2001 From: Sally Knight Date: Sun, 29 Mar 2026 20:26:32 +0300 Subject: [PATCH] chore: fmt --- Minecraft.Client/UI/AbstractBeaconButton.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Minecraft.Client/UI/AbstractBeaconButton.cpp b/Minecraft.Client/UI/AbstractBeaconButton.cpp index b2d874ddc..92b49e881 100644 --- a/Minecraft.Client/UI/AbstractBeaconButton.cpp +++ b/Minecraft.Client/UI/AbstractBeaconButton.cpp @@ -28,13 +28,13 @@ void AbstractBeaconButton::renderBg(Minecraft* minecraft, int xm, int ym) { int texU = 0; if (!active) { - texU += w * 2; + texU += w * 2; } else if (selected) { - texU += w * 1; + texU += w * 1; } else if (hovered) { - texU += w * 3; + texU += w * 3; } - int texV = 219; + int texV = 219; blit(x, y, texU, texV, w, h);