Browse Source

#ifdef fix for #326

daid303 12 years ago
parent
commit
047d037f8c
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/ultralcd.cpp

+ 2
- 2
Marlin/ultralcd.cpp View File

@@ -476,7 +476,7 @@ static void lcd_control_temperature_preheat_pla_settings_menu()
476 476
 #if TEMP_SENSOR_BED != 0
477 477
     MENU_ITEM_EDIT(int3, MSG_BED, &plaPreheatHPBTemp, 0, BED_MAXTEMP - 15);
478 478
 #endif
479
-#if EEPROM_SETTINGS
479
+#ifdef EEPROM_SETTINGS
480 480
     MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
481 481
 #endif
482 482
     END_MENU();
@@ -491,7 +491,7 @@ static void lcd_control_temperature_preheat_abs_settings_menu()
491 491
 #if TEMP_SENSOR_BED != 0
492 492
     MENU_ITEM_EDIT(int3, MSG_BED, &absPreheatHPBTemp, 0, BED_MAXTEMP - 15);
493 493
 #endif
494
-#if EEPROM_SETTINGS
494
+#ifdef EEPROM_SETTINGS
495 495
     MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
496 496
 #endif
497 497
     END_MENU();

Loading…
Cancel
Save