Merge pull request #5488 from thinkyhead/rc_fade_compiler_warn
Patch fade_factor compiler warning
This commit is contained in:
commit
b9ee0d7bd3
@ -556,8 +556,6 @@ void Planner::check_axes_activity() {
|
||||
}
|
||||
else
|
||||
z_fade_factor = 1.0;
|
||||
#else
|
||||
constexpr float z_fade_factor = 1.0;
|
||||
#endif
|
||||
|
||||
#if ENABLED(MESH_BED_LEVELING)
|
||||
@ -584,7 +582,11 @@ void Planner::check_axes_activity() {
|
||||
#elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
|
||||
|
||||
float tmp[XYZ] = { lx, ly, 0 };
|
||||
lz += bilinear_z_offset(tmp) * z_fade_factor;
|
||||
lz += bilinear_z_offset(tmp)
|
||||
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
|
||||
* z_fade_factor
|
||||
#endif
|
||||
;
|
||||
|
||||
#endif
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user