Fixed some minor bugs with teleporters an changelog

This commit is contained in:
Anuken
2018-03-13 13:40:57 -04:00
parent 8fffc1cf9c
commit ea9b3cc7dd
6 changed files with 18 additions and 8 deletions

View File

@@ -25,8 +25,8 @@ public class DesktopInput extends InputHandler{
@Override public float getCursorEndX(){ return endx; }
@Override public float getCursorEndY(){ return endy; }
@Override public float getCursorX(){ return (Graphics.screen(mousex, mousey).x); }
@Override public float getCursorY(){ return (Gdx.graphics.getHeight() - 1 - Graphics.screen(mousex, mousey).y); }
@Override public float getCursorX(){ return Graphics.screen(mousex, mousey).x; }
@Override public float getCursorY(){ return Gdx.graphics.getHeight() - 1 - Graphics.screen(mousex, mousey).y; }
@Override public boolean drawPlace(){ return !beganBreak; }
@Override