aboutsummaryrefslogtreecommitdiffstats
path: root/klippy/chelper/kin_shaper.c
diff options
context:
space:
mode:
Diffstat (limited to 'klippy/chelper/kin_shaper.c')
-rw-r--r--klippy/chelper/kin_shaper.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/klippy/chelper/kin_shaper.c b/klippy/chelper/kin_shaper.c
index 0d62ada0..f71650f1 100644
--- a/klippy/chelper/kin_shaper.c
+++ b/klippy/chelper/kin_shaper.c
@@ -332,13 +332,12 @@ input_shaper_set_sk(struct stepper_kinematics *sk
, struct stepper_kinematics *orig_sk)
{
struct input_shaper *is = container_of(sk, struct input_shaper, sk);
- int af = orig_sk->active_flags & (AF_X | AF_Y);
- if (af == (AF_X | AF_Y))
- is->sk.calc_position_cb = shaper_xy_calc_position;
- else if (af & AF_X)
+ if (orig_sk->active_flags == AF_X)
is->sk.calc_position_cb = shaper_x_calc_position;
- else if (af & AF_Y)
+ else if (orig_sk->active_flags == AF_Y)
is->sk.calc_position_cb = shaper_y_calc_position;
+ else if (orig_sk->active_flags & (AF_X | AF_Y))
+ is->sk.calc_position_cb = shaper_xy_calc_position;
else
return -1;
is->sk.active_flags = orig_sk->active_flags;