浏览代码

Fix MSG_NOZZLE

Scott Lahteine 10 年前
父节点
当前提交
53eea611b8
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3
    3
      Marlin/ultralcd.cpp

+ 3
- 3
Marlin/ultralcd.cpp 查看文件

812
   MENU_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
812
   MENU_ITEM_EDIT(int3, MSG_NOZZLE, &target_temperature[0], 0, HEATER_0_MAXTEMP - 15);
813
 #endif
813
 #endif
814
 #if TEMP_SENSOR_1 != 0
814
 #if TEMP_SENSOR_1 != 0
815
-  MENU_ITEM_EDIT(int3, MSG_NOZZLE1, &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
815
+  MENU_ITEM_EDIT(int3, MSG_NOZZLE " 2", &target_temperature[1], 0, HEATER_1_MAXTEMP - 15);
816
 #endif
816
 #endif
817
 #if TEMP_SENSOR_2 != 0
817
 #if TEMP_SENSOR_2 != 0
818
-  MENU_ITEM_EDIT(int3, MSG_NOZZLE2, &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
818
+  MENU_ITEM_EDIT(int3, MSG_NOZZLE " 3", &target_temperature[2], 0, HEATER_2_MAXTEMP - 15);
819
 #endif
819
 #endif
820
 #if TEMP_SENSOR_3 != 0
820
 #if TEMP_SENSOR_3 != 0
821
-  MENU_ITEM_EDIT(int3, MSG_NOZZLE3, &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
821
+  MENU_ITEM_EDIT(int3, MSG_NOZZLE " 4", &target_temperature[3], 0, HEATER_3_MAXTEMP - 15);
822
 #endif
822
 #endif
823
 #if TEMP_SENSOR_BED != 0
823
 #if TEMP_SENSOR_BED != 0
824
   MENU_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
824
   MENU_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);

正在加载...
取消
保存