|
@@ -488,16 +488,16 @@ static void lcd_tune_menu() {
|
488
|
488
|
MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_BED, &target_temperature_bed, 0, BED_MAXTEMP - 15);
|
489
|
489
|
#endif
|
490
|
490
|
MENU_MULTIPLIER_ITEM_EDIT(int3, MSG_FAN_SPEED, &fanSpeed, 0, 255);
|
491
|
|
- MENU_ITEM_EDIT(int3, MSG_FLOW, &extruder_multiply[active_extruder], 10, 999);
|
492
|
|
- MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N0, &extruder_multiply[0], 10, 999);
|
|
491
|
+ MENU_ITEM_EDIT(int3, MSG_FLOW, &extruder_multiplier[active_extruder], 10, 999);
|
|
492
|
+ MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N0, &extruder_multiplier[0], 10, 999);
|
493
|
493
|
#if TEMP_SENSOR_1 != 0
|
494
|
|
- MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &extruder_multiply[1], 10, 999);
|
|
494
|
+ MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N1, &extruder_multiplier[1], 10, 999);
|
495
|
495
|
#endif
|
496
|
496
|
#if TEMP_SENSOR_2 != 0
|
497
|
|
- MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &extruder_multiply[2], 10, 999);
|
|
497
|
+ MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N2, &extruder_multiplier[2], 10, 999);
|
498
|
498
|
#endif
|
499
|
499
|
#if TEMP_SENSOR_3 != 0
|
500
|
|
- MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &extruder_multiply[3], 10, 999);
|
|
500
|
+ MENU_ITEM_EDIT(int3, MSG_FLOW MSG_N3, &extruder_multiplier[3], 10, 999);
|
501
|
501
|
#endif
|
502
|
502
|
|
503
|
503
|
#ifdef BABYSTEPPING
|