mirror of
https://github.com/OrcaSlicer/OrcaSlicer.git
synced 2026-05-16 18:12:10 +00:00
FIX: fix build error
jira: none Change-Id: I97df69b728fc3871b7c33e1fd3ba068e741d51c7 (cherry picked from commit 326d7d28b47017bdbd98873a6437ef84116291ba)
This commit is contained in:
@@ -2796,7 +2796,7 @@ void Print::_make_wipe_tower()
|
||||
unsigned int pre_filament_id = nozzle_cur_filament_ids[nozzle_id];
|
||||
|
||||
float volume_to_purge = 0;
|
||||
if (pre_filament_id != unsigned int(-1) && pre_filament_id != filament_id) {
|
||||
if (pre_filament_id != (unsigned int)(-1) && pre_filament_id != filament_id) {
|
||||
volume_to_purge = multi_extruder_flush[nozzle_id][pre_filament_id][filament_id];
|
||||
volume_to_purge *= m_config.flush_multiplier.get_at(nozzle_id);
|
||||
volume_to_purge = pre_filament_id == -1 ? 0 :
|
||||
|
||||
Reference in New Issue
Block a user