Missing semicolon in ultralcd.cpp
When PARK_HEAD_ON_PAUSE is defined Marlin won't compile because of two missing semicolon.
This commit is contained in:
parent
dad907b923
commit
3b82db5fe9
@ -655,13 +655,13 @@ void kill_screen(const char* lcd_msg) {
|
|||||||
card.pauseSDPrint();
|
card.pauseSDPrint();
|
||||||
print_job_timer.pause();
|
print_job_timer.pause();
|
||||||
#if ENABLED(PARK_HEAD_ON_PAUSE)
|
#if ENABLED(PARK_HEAD_ON_PAUSE)
|
||||||
enqueue_and_echo_commands_P(PSTR("M125"))
|
enqueue_and_echo_commands_P(PSTR("M125"));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void lcd_sdcard_resume() {
|
void lcd_sdcard_resume() {
|
||||||
#if ENABLED(PARK_HEAD_ON_PAUSE)
|
#if ENABLED(PARK_HEAD_ON_PAUSE)
|
||||||
enqueue_and_echo_commands_P(PSTR("M24"))
|
enqueue_and_echo_commands_P(PSTR("M24"));
|
||||||
#else
|
#else
|
||||||
card.startFileprint();
|
card.startFileprint();
|
||||||
print_job_timer.start();
|
print_job_timer.start();
|
||||||
|
Loading…
Reference in New Issue
Block a user