fix a small mistake made by inattention (#8686)

This commit is contained in:
Valera
2023-06-08 00:36:19 +03:00
committed by GitHub
parent 376e5c0b29
commit a43d39597a

View File

@@ -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);
}