Browse Source

Fix typo in next_bed_check_ms

pull/1/head
Scott Lahteine 10 years ago
parent
commit
257a907456
  1. 2
      Marlin/temperature.cpp

2
Marlin/temperature.cpp

@ -638,7 +638,7 @@ void manage_heater() {
#endif #endif
#ifndef PIDTEMPBED #ifndef PIDTEMPBED
if (ms < previous_bed_check_ms) return; if (ms < next_bed_check_ms) return;
next_bed_check_ms = ms + BED_CHECK_INTERVAL; next_bed_check_ms = ms + BED_CHECK_INTERVAL;
#endif #endif

Loading…
Cancel
Save