Browse Source

Fix unused variable warnings (#14643)

pull/1/head
Marcio Teixeira 5 years ago
committed by Scott Lahteine
parent
commit
57ed063ba1
  1. 3
      Marlin/src/lcd/extensible_ui/ui_api.cpp

3
Marlin/src/lcd/extensible_ui/ui_api.cpp

@ -668,6 +668,8 @@ namespace ExtUI {
&& (linked_nozzles || active_extruder == 0)
#endif
) zprobe_zoffset += mm;
#else
UNUSED(mm);
#endif
#if EXTRUDERS > 1
@ -687,6 +689,7 @@ namespace ExtUI {
}
#else
UNUSED(linked_nozzles);
UNUSED(mm);
#endif
}

Loading…
Cancel
Save