summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/export/button.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/button.h b/firmware/export/button.h
index 2290b284ce..93e6443645 100644
--- a/firmware/export/button.h
+++ b/firmware/export/button.h
@@ -264,14 +264,14 @@ bool remote_button_hold(void);
264 264
265 /* Main unit's buttons */ 265 /* Main unit's buttons */
266#define BUTTON_POWER 0x00000001 266#define BUTTON_POWER 0x00000001
267#define BUTTON_PLAY 0x00000002 267#define BUTTON_REC 0x00000002
268 268
269#define BUTTON_LEFT 0x00000004 269#define BUTTON_LEFT 0x00000004
270#define BUTTON_RIGHT 0x00000008 270#define BUTTON_RIGHT 0x00000008
271#define BUTTON_UP 0x00000010 271#define BUTTON_UP 0x00000010
272#define BUTTON_DOWN 0x00000020 272#define BUTTON_DOWN 0x00000020
273 273
274#define BUTTON_REC 0x00000040 274#define BUTTON_PLAY 0x00000040
275#define BUTTON_SELECT 0x00000080 275#define BUTTON_SELECT 0x00000080
276 276
277#define BUTTON_MAIN (BUTTON_POWER|BUTTON_PLAY|BUTTON_LEFT|BUTTON_RIGHT\ 277#define BUTTON_MAIN (BUTTON_POWER|BUTTON_PLAY|BUTTON_LEFT|BUTTON_RIGHT\