diff options
author | Juan J. Martinez <jjm@usebox.net> | 2023-07-22 14:03:30 +0100 |
---|---|---|
committer | Juan J. Martinez <jjm@usebox.net> | 2023-07-22 14:03:30 +0100 |
commit | 9caf11c2ed999c8e04f1da90ed94d73eade6763d (patch) | |
tree | c026d9ef9c92cbb015f43c9e54dc56e2e19c48a6 | |
parent | e7ccc984c8cc495f36129ffcad3a48754bd26c2e (diff) | |
download | gold-mine-run-9caf11c2ed999c8e04f1da90ed94d73eade6763d.tar.gz gold-mine-run-9caf11c2ed999c8e04f1da90ed94d73eade6763d.zip |
Fixed gap
-rw-r--r-- | src/control.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/control.h b/src/control.h index f4f02c7..5960eea 100644 --- a/src/control.h +++ b/src/control.h @@ -5,9 +5,9 @@ #define CTL_UP 1 #define CTL_DOWN 2 #define CTL_RIGHT 4 -#define CTL_LEFT 16 -#define CTL_FIRE1 32 -#define CTL_FIRE2 64 +#define CTL_LEFT 8 +#define CTL_FIRE1 16 +#define CTL_FIRE2 32 void control_init(); uint8_t control_read(); |