Use comptime for fully declarative LV2 and Custom commands #14
1 changed files with 3 additions and 6 deletions
|
@ -500,13 +500,10 @@ pub const Lang = struct {
|
|||
}
|
||||
|
||||
const arg = maybe_arg.?;
|
||||
if (cmd_field.field_type != f32)
|
||||
@compileError("LV2 parameter struct can only have f32 fields");
|
||||
|
||||
const argument_value = switch (cmd_field.field_type) {
|
||||
f32 => try std.fmt.parseFloat(f32, arg),
|
||||
else => @compileError("LV2 parameter struct can only have f32 fields"),
|
||||
};
|
||||
|
||||
@field(cmd.parameters, cmd_field.name) = argument_value;
|
||||
@field(cmd.parameters, cmd_field.name) = try std.fmt.parseFloat(f32, arg);
|
||||
}
|
||||
} else {
|
||||
inline for (@typeInfo(command_struct).Struct.fields) |cmd_field| {
|
||||
|
|
Loading…
Reference in a new issue