From a43d39597a08bf65639c1389e3792522f71d5c09 Mon Sep 17 00:00:00 2001 From: Valera <76255437+xzxADIxzx@users.noreply.github.com> Date: Thu, 8 Jun 2023 00:36:19 +0300 Subject: [PATCH] fix a small mistake made by inattention (#8686) --- core/src/mindustry/graphics/LoadRenderer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/mindustry/graphics/LoadRenderer.java b/core/src/mindustry/graphics/LoadRenderer.java index 432798d683..c0baa1ae7a 100644 --- a/core/src/mindustry/graphics/LoadRenderer.java +++ b/core/src/mindustry/graphics/LoadRenderer.java @@ -456,7 +456,7 @@ public class LoadRenderer implements Disposable{ float skew = bsize/2f; float v = w / 2 + cx * dir - width / 2f; - Fill.rects(v + dir*skew, h/2f - bsize/2f + bsize/2f, width, bsize/2f, -dir*skew); + Fill.rects(v + dir*skew, h/2f, width, bsize/2f, -dir*skew); Fill.rects(v, h/2f - bsize/2f, width, bsize/2f, dir*skew); }