Skip to content

Commit

Permalink
Fixed name for text X control stick input being flipped
Browse files Browse the repository at this point in the history
  • Loading branch information
aglab2 committed Mar 12, 2023
1 parent 8b8e94a commit fd63f0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/input_viewer.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ void InputViewer_onNormal()
print_text_fmt_int(270, 40, "%d", ABS(x));
print_text_fmt_int(270, 20, "%d", ABS(y));
if (x)
print_text(250, 40, POSITIVE(x) ? "L" : "R");
print_text(250, 40, POSITIVE(x) ? "R" : "L");

if (y)
print_text(250, 20, POSITIVE(y) ? "U" : "D");
Expand Down
2 changes: 1 addition & 1 deletion src/xversion.h
Original file line number Diff line number Diff line change
@@ -1 +1 @@
HACKTICE_VERSION(1, 4, 1)
HACKTICE_VERSION(1, 4, 2)

0 comments on commit fd63f0f

Please sign in to comment.