|
@@ -761,9 +761,7 @@ void kill_screen(const char* lcd_msg) {
|
761
|
761
|
|
762
|
762
|
#if ENABLED(MENU_ITEM_CASE_LIGHT)
|
763
|
763
|
|
764
|
|
- extern int case_light_brightness;
|
765
|
|
- extern bool case_light_on;
|
766
|
|
- extern void update_case_light();
|
|
764
|
+ #include "../feature/caselight.h"
|
767
|
765
|
|
768
|
766
|
void case_light_menu() {
|
769
|
767
|
START_MENU();
|
|
@@ -771,7 +769,7 @@ void kill_screen(const char* lcd_msg) {
|
771
|
769
|
// ^ Main
|
772
|
770
|
//
|
773
|
771
|
MENU_BACK(MSG_MAIN);
|
774
|
|
- MENU_ITEM_EDIT_CALLBACK(int3, MSG_CASE_LIGHT_BRIGHTNESS, &case_light_brightness, 0, 255, update_case_light, true);
|
|
772
|
+ MENU_ITEM_EDIT_CALLBACK(int8, MSG_CASE_LIGHT_BRIGHTNESS, &case_light_brightness, 0, 255, update_case_light, true);
|
775
|
773
|
MENU_ITEM_EDIT_CALLBACK(bool, MSG_CASE_LIGHT, (bool*)&case_light_on, update_case_light);
|
776
|
774
|
END_MENU();
|
777
|
775
|
}
|