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
   #endif       
638
   #endif       
639
   
639
   
640
   #ifndef PIDTEMPBED
640
   #ifndef PIDTEMPBED
641
-    if (ms < previous_bed_check_ms) return;
641
+    if (ms < next_bed_check_ms) return;
642
     next_bed_check_ms = ms + BED_CHECK_INTERVAL;
642
     next_bed_check_ms = ms + BED_CHECK_INTERVAL;
643
   #endif
643
   #endif
644
 
644
 

Loading…
Cancel
Save