Skip to content

Commit

Permalink
format, change comma to x (5x5 rather than 5,5)
Browse files Browse the repository at this point in the history
  • Loading branch information
BalaM314 authored Dec 13, 2023
1 parent cb1bd6b commit 8a6ba73
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/src/mindustry/input/InputHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -1327,8 +1327,8 @@ protected void drawSelection(int x1, int y1, int x2, int y2, int maxLength, Colo
}
Font font = Fonts.outline;
font.setColor(col2);
font.getData().setScale(1/(4*Scl.scl(1)));
font.draw((int)(result.x2-result.x)/8 + "," + (int)(result.y2-result.y)/8, result.x2, result.y);
font.getData().setScale(1 / (4 * Scl.scl(1)));
font.draw((int)(result.x2 - result.x) / 8 + "x" + (int)(result.y2 - result.y) / 8, result.x2, result.y);
font.setColor(Color.white);
font.getData().setScale(1);
}
Expand Down

0 comments on commit 8a6ba73

Please sign in to comment.