Browse Source

Fix typo in next_bed_check_ms

Scott Lahteine 10 years ago
parent
commit
257a907456
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/temperature.cpp

+ 1
- 1
Marlin/temperature.cpp View File

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

Loading…
Cancel
Save