Skip to content

Commit fd63f0f

Browse files
committed
Fixed name for text X control stick input being flipped
1 parent 8b8e94a commit fd63f0f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/input_viewer.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ void InputViewer_onNormal()
4545
print_text_fmt_int(270, 40, "%d", ABS(x));
4646
print_text_fmt_int(270, 20, "%d", ABS(y));
4747
if (x)
48-
print_text(250, 40, POSITIVE(x) ? "L" : "R");
48+
print_text(250, 40, POSITIVE(x) ? "R" : "L");
4949

5050
if (y)
5151
print_text(250, 20, POSITIVE(y) ? "U" : "D");

src/xversion.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
HACKTICE_VERSION(1, 4, 1)
1+
HACKTICE_VERSION(1, 4, 2)

0 commit comments

Comments
 (0)