clap

CLAP Audio Plugin API
Log | Files | Refs | README | LICENSE

commit 469541c05a0fd59f123422dda3d792ee0f73bc5f
parent d1cb32262e399fe804725e159de467508203d655
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date:   Mon, 30 May 2022 11:44:20 +0200

Make the time sig use unsigned integers

Diffstat:
Minclude/clap/events.h | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/include/clap/events.h b/include/clap/events.h @@ -232,8 +232,8 @@ typedef struct clap_event_transport { clap_beattime bar_start; // start pos of the current bar int32_t bar_number; // bar at song pos 0 has the number 0 - int16_t tsig_num; // time signature numerator - int16_t tsig_denom; // time signature denominator + uint16_t tsig_num; // time signature numerator + uint16_t tsig_denom; // time signature denominator } clap_event_transport_t; typedef struct clap_event_midi {