allow null for x and y in fcft_kerning()
1 files changed, 2 insertions(+), 2 deletions(-) M fcft.zig
M fcft.zig => fcft.zig +2 -2
@@ 50,8 50,8 @@ pub const Font = extern struct { font: *Font, left: c_int, right: c_int, - noalias x: *c_long, - noalias y: *c_long, + noalias x: ?*c_long, + noalias y: ?*c_long, ) bool; pub const kerning = fcft_kerning;