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:
@@ -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 );
|
||||
|
Reference in New Issue
Block a user