Skip to content

Commit

Permalink
#ifdef fix for MarlinFirmware#326
Browse files Browse the repository at this point in the history
  • Loading branch information
daid committed Dec 13, 2012
1 parent f30b46b commit 047d037
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/ultralcd.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ static void lcd_control_temperature_preheat_pla_settings_menu()
#if TEMP_SENSOR_BED != 0
MENU_ITEM_EDIT(int3, MSG_BED, &plaPreheatHPBTemp, 0, BED_MAXTEMP - 15);
#endif
#if EEPROM_SETTINGS
#ifdef EEPROM_SETTINGS
MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
#endif
END_MENU();
Expand All @@ -491,7 +491,7 @@ static void lcd_control_temperature_preheat_abs_settings_menu()
#if TEMP_SENSOR_BED != 0
MENU_ITEM_EDIT(int3, MSG_BED, &absPreheatHPBTemp, 0, BED_MAXTEMP - 15);
#endif
#if EEPROM_SETTINGS
#ifdef EEPROM_SETTINGS
MENU_ITEM(function, MSG_STORE_EPROM, Config_StoreSettings);
#endif
END_MENU();
Expand Down

0 comments on commit 047d037

Please sign in to comment.