Better build request display / Fixed incorrect rotation axes

This commit is contained in:
Anuken
2019-01-18 11:30:15 -05:00
parent 7527f9326c
commit 2385011f96
3 changed files with 12 additions and 6 deletions

View File

@@ -182,7 +182,7 @@ public class DesktopInput extends InputHandler{
selectScale = 0f;
}
rotation = Mathf.mod(rotation + (int) Core.input.axis(Binding.rotate), 4);
rotation = Mathf.mod(rotation + (int) Core.input.axisTap(Binding.rotate), 4);
Tile cursor = tileAt(Core.input.mouseX(), Core.input.mouseY());