Fixed build when tech ENABLE_GCODE_VIEWER is disabled + fixed perl code

This commit is contained in:
enricoturri1966 2020-05-07 11:24:36 +02:00
parent 89dafeac95
commit 27b9f85607
7 changed files with 50 additions and 41 deletions

View file

@ -164,7 +164,7 @@ _constant()
void export_gcode(char *path_template) %code%{
try {
THIS->export_gcode(path_template, nullptr, nullptr);
THIS->export_gcode(path_template, nullptr);
} catch (std::exception& e) {
croak("%s\n", e.what());
}