Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
porres committed Aug 1, 2024
1 parent 381515d commit 4f57c1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cyclone_objects/binaries/audio/bitor.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static t_class *bitor_class;
static void bitor_intmask(t_bitor *x, t_floatarg f)
{
x->x_mask = (int32_t)f;
pd_float(x->x_rightinlet, (t_float)x->x_mask);
pd_float((t_pd *)x->x_rightinlet, (t_float)x->x_mask);
}

static t_int *bitor_perform(t_int *w)
Expand Down Expand Up @@ -118,7 +118,7 @@ static void bitor_bits(t_bitor *x, t_symbol *s, int ac, t_atom *av)
t_float f;
magic_setnan(&f);
x->x_mask = bitwise_getbitmask(ac, av);
pd_float(x->x_rightinlet, f);
pd_float((t_pd *)x->x_rightinlet, f);
}

static void bitor_mode(t_bitor *x, t_floatarg f)
Expand Down

0 comments on commit 4f57c1a

Please sign in to comment.