mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-01-18 07:29:33 +00:00
Fix typo in next_bed_check_ms
This commit is contained in:
parent
e4b1e8651b
commit
257a907456
1 changed files with 1 additions and 1 deletions
|
@ -638,7 +638,7 @@ void manage_heater() {
|
|||
#endif
|
||||
|
||||
#ifndef PIDTEMPBED
|
||||
if (ms < previous_bed_check_ms) return;
|
||||
if (ms < next_bed_check_ms) return;
|
||||
next_bed_check_ms = ms + BED_CHECK_INTERVAL;
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue