Inverted state logic for forced_heating_stop variable
This commit is contained in:
parent
86b4b805d2
commit
cd3220d055
2 changed files with 4 additions and 4 deletions
|
|
@ -19,7 +19,7 @@ int absPreheatHotendTemp;
|
|||
int absPreheatHPBTemp;
|
||||
int absPreheatFanSpeed;
|
||||
|
||||
boolean forced_heating_stop = true ;
|
||||
boolean forced_heating_stop = false ;
|
||||
|
||||
#ifdef ULTIPANEL
|
||||
static float manual_feedrate[] = MANUAL_FEEDRATE;
|
||||
|
|
@ -258,7 +258,7 @@ static void lcd_sdcard_stop()
|
|||
}
|
||||
autotempShutdown();
|
||||
|
||||
forced_heating_stop = false;
|
||||
forced_heating_stop = true;
|
||||
}
|
||||
|
||||
/* Menu implementation */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue