0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-03-16 19:26:13 +00:00

Minor fix for M300

Corrected wrong order of parameters.
This commit is contained in:
AnHardt 2015-04-19 13:25:20 +02:00
parent 0908c41156
commit 671aaf2dc9

View file

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