Browse Source

Minor fix for M300

Corrected wrong order of parameters.
AnHardt 10 years ago
parent
commit
671aaf2dc9
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -3971,7 +3971,7 @@ inline void gcode_M226() {
3971 3971
         delay(beepP);
3972 3972
         noTone(BEEPER);
3973 3973
       #elif defined(ULTRALCD)
3974
-        lcd_buzz(beepS, beepP);
3974
+        lcd_buzz(beepP, beepS);
3975 3975
       #elif defined(LCD_USE_I2C_BUZZER)
3976 3976
         lcd_buzz(beepP, beepS);
3977 3977
       #endif

Loading…
Cancel
Save