From 23b7176d5aff9b9ca66be6e82276de6af7912e20 Mon Sep 17 00:00:00 2001 From: Max O'Cull Date: Fri, 11 Oct 2019 20:00:00 -0400 Subject: [PATCH] Remove extraneous withLabels argument --- core/src/io/anuke/mindustry/graphics/MinimapRenderer.java | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java b/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java index 13bca1f4eb..516203cee4 100644 --- a/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java +++ b/core/src/io/anuke/mindustry/graphics/MinimapRenderer.java @@ -72,7 +72,7 @@ public class MinimapRenderer implements Disposable{ region = new TextureRegion(texture); } - public void drawEntities(float x, float y, float w, float h, boolean withLabels){ + public void drawEntities(float x, float y, float w, float h){ updateUnitArray(); float sz = baseSize * zoom; @@ -101,10 +101,6 @@ public class MinimapRenderer implements Disposable{ Draw.color(); } - public void drawEntities(float x, float y, float w, float h){ - drawEntities(x, y, w, h, false); - } - public TextureRegion getRegion(){ if(texture == null) return null;