From ebb1a7dc1fcf829e23f43dc4e9def1ad92cdcc47 Mon Sep 17 00:00:00 2001 From: Robby Candra Date: Wed, 17 Jul 2019 15:05:23 +0700 Subject: [PATCH] Fix EXT_UI example onFilamentChange Parameter (#14649) --- Marlin/src/lcd/extui_example.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/src/lcd/extui_example.cpp b/Marlin/src/lcd/extui_example.cpp index 1bcfea60d..4fec2745a 100644 --- a/Marlin/src/lcd/extui_example.cpp +++ b/Marlin/src/lcd/extui_example.cpp @@ -54,7 +54,7 @@ namespace ExtUI { void onPrintTimerStarted() {} void onPrintTimerPaused() {} void onPrintTimerStopped() {} - void onFilamentRunout() {} + void onFilamentRunout(const extruder_t extruder) {} void onUserConfirmRequired(const char * const msg) {} void onStatusChanged(const char * const msg) {} void onFactoryReset() {}