Fix BTN_BACK

Followup to #9836
This commit is contained in:
Scott Lahteine 2018-02-28 03:27:36 -06:00
parent c5fd486e91
commit 8af3c04e7d

View File

@ -117,7 +117,7 @@
#if BUTTON_EXISTS(BACK)
#define BLEN_D 3
#define EN_D BIT(BLEN_D)
#define EN_D _BV(BLEN_D)
#define LCD_BACK_CLICKED (buttons & EN_D)
#endif