Skip to content

Commit

Permalink
No linefeed
Browse files Browse the repository at this point in the history
  • Loading branch information
tonihele committed Mar 17, 2024
1 parent 47a9e95 commit b498f3f
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -128,10 +128,10 @@ public void onAction(String name, boolean ongoing, float ignored) {
*/
if (name.equals("left")) {
angle += 0.1f; // radians
System.out.println("rotate floor and sky leftward ...");
System.out.print("rotate floor and sky leftward ...");
} else if (name.equals("right")) {
angle -= 0.1f; // radians
System.out.println("rotate floor and sky spatials rightward ...");
System.out.print("rotate floor and sky spatials rightward ...");
} else {
return;
}
Expand Down

0 comments on commit b498f3f

Please sign in to comment.