1
0
mirror of https://github.com/SquidDev-CC/CC-Tweaked synced 2025-10-22 01:17:38 +00:00

fixed println, removed .launch configurations.

This commit is contained in:
coolsa
2021-10-01 23:22:31 -06:00
parent abfb05f04c
commit 6d25278a5c
4 changed files with 1 additions and 33 deletions

View File

@@ -81,7 +81,6 @@ public class WidgetTerminal extends ClickableWidget {
{
mouseX -= innerX;
mouseY -= innerY;
System.out.println(mouseX);
int charX = (int) (mouseX / FONT_WIDTH);
int charY = (int) (mouseY / FONT_HEIGHT);
charX = Math.min( Math.max( charX, 0 ), term.getWidth() - 1 );