mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-07-12 01:07:57 -06:00
Fixed a typo in fprintf
This commit is contained in:
parent
02256e900f
commit
fec05d430b
1 changed files with 1 additions and 1 deletions
|
@ -786,7 +786,7 @@ void GCode::_do_export(Print &print, FILE *file)
|
||||||
print.total_extruded_volume = print.total_extruded_volume + extruded_volume;
|
print.total_extruded_volume = print.total_extruded_volume + extruded_volume;
|
||||||
}
|
}
|
||||||
_write_format(file, "; total filament cost = %.1lf\n", print.total_cost);
|
_write_format(file, "; total filament cost = %.1lf\n", print.total_cost);
|
||||||
_write_format(file, "; estimated printing time = %s\n", m_time_estimator.get_time_hms());
|
_write_format(file, "; estimated printing time = %s\n", m_time_estimator.get_time_hms().c_str());
|
||||||
|
|
||||||
// Append full config.
|
// Append full config.
|
||||||
_write(file, "\n");
|
_write(file, "\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue