Fix typo in next_bed_check_ms

This commit is contained in:
Scott Lahteine 2015-04-12 23:17:28 -07:00
parent e4b1e8651b
commit 257a907456

View File

@ -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