Browse Source

Fix BTN_BACK

Followup to #9835
Scott Lahteine 7 years ago
parent
commit
bd0967ad87
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/ultralcd.h

+ 1
- 1
Marlin/src/lcd/ultralcd.h View File

121
 
121
 
122
     #if BUTTON_EXISTS(BACK)
122
     #if BUTTON_EXISTS(BACK)
123
       #define BLEN_D 3
123
       #define BLEN_D 3
124
-      #define EN_D BIT(BLEN_D)
124
+      #define EN_D _BV(BLEN_D)
125
       #define LCD_BACK_CLICKED (buttons & EN_D)
125
       #define LCD_BACK_CLICKED (buttons & EN_D)
126
     #endif
126
     #endif
127
 
127
 

Loading…
Cancel
Save