Browse Source

Update Marlin_main.cpp

fixed minor typo
Bernhard Kubicek 9 years ago
parent
commit
f24c5d82e3
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/Marlin_main.cpp

+ 2
- 2
Marlin/Marlin_main.cpp View File

3616
         while(!lcd_clicked()){
3616
         while(!lcd_clicked()){
3617
           cnt++;
3617
           cnt++;
3618
           manage_heater();
3618
           manage_heater();
3619
-          manage_inactivity(false);
3619
+          manage_inactivity(true);
3620
           lcd_update();
3620
           lcd_update();
3621
           if(cnt==0)
3621
           if(cnt==0)
3622
           {
3622
           {
4335
   if(stepper_inactive_time)  {
4335
   if(stepper_inactive_time)  {
4336
     if( (millis() - previous_millis_cmd) >  stepper_inactive_time )
4336
     if( (millis() - previous_millis_cmd) >  stepper_inactive_time )
4337
     {
4337
     {
4338
-      if(blocks_queued() == false && ignore_stepper_queue != true) {
4338
+      if(blocks_queued() == false && ignore_stepper_queue == false) {
4339
         disable_x();
4339
         disable_x();
4340
         disable_y();
4340
         disable_y();
4341
         disable_z();
4341
         disable_z();

Loading…
Cancel
Save