Skip to content

Commit caf5af9

Browse files
committed
Version 1.2 : corrected a small error (copy-paste fail)
1 parent 1e25653 commit caf5af9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ int main(int argc, char **argv)
8888
printf((GCHeld[activePad] & PAD_BUTTON_LEFT) ? "LEFT " : " ");
8989
printf((GCHeld[activePad] & PAD_BUTTON_RIGHT) ? "RIGHT " : " ");
9090
printf((GCHeld[activePad] & PAD_BUTTON_UP) ? "UP " : " ");
91-
printf((GCHeld[activePad] & PAD_BUTTON_UP) ? "DOWN " : " ");
91+
printf((GCHeld[activePad] & PAD_BUTTON_DOWN) ? "DOWN " : " ");
9292

9393
printf("\n\n");
9494
SetFgColor(5, 2);

0 commit comments

Comments
 (0)