Skip to content

Commit

Permalink
fix pd64 compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
porres committed Jun 1, 2024
1 parent e044e9a commit 8e2ea07
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cyclone_objects/binaries/audio/mstosamps.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
typedef struct _mstosamps{
t_object x_obj;
float x_sr_khz;
float x_f;
t_float x_f;
t_outlet *x_floatout;
}t_mstosamps;

Expand Down
4 changes: 2 additions & 2 deletions cyclone_objects/binaries/audio/sampstoms.c
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ typedef struct _sampstoms
{
t_object x_obj;
float x_rcpksr;
float x_f;
t_float x_f;
t_outlet *x_floatout;
} t_sampstoms;

Expand Down Expand Up @@ -59,4 +59,4 @@ CYCLONE_OBJ_API void sampstoms_tilde_setup(void)
CLASS_MAINSIGNALIN(sampstoms_class, t_sampstoms, x_f);
class_addfloat(sampstoms_class,
(t_method)sampstoms_float);
}
}

0 comments on commit 8e2ea07

Please sign in to comment.