fix typo
This commit is contained in:
parent
83996b889f
commit
2b4f428890
1 changed files with 3 additions and 3 deletions
|
@ -234,14 +234,14 @@ pub const Runner = struct {
|
|||
defer params.deinit();
|
||||
|
||||
inline for (@typeInfo(@TypeOf(command.parameters)).Struct.fields) |cmd_field| {
|
||||
try params.put(
|
||||
_ = try params.put(
|
||||
cmd_field.name,
|
||||
@field(command.parameters, cmd_field.name),
|
||||
);
|
||||
}
|
||||
|
||||
var image = try self.getImage();
|
||||
try image.runCustomPlugin(typ.plugin_type, pos, map);
|
||||
try image.runCustomPlugin(@TypeOf(command).plugin_type, pos, ¶ms);
|
||||
}
|
||||
|
||||
fn newRunCommandSingle(
|
||||
|
@ -261,7 +261,7 @@ pub const Runner = struct {
|
|||
const ctype = typ.command_type;
|
||||
switch (ctype) {
|
||||
.lv2_command => try self.executeLV2Command(command.*),
|
||||
.plugin_command => try self.executePlugin(command.*),
|
||||
.custom_command => try self.executePlugin(command.*),
|
||||
else => @panic("TODO support command type"),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue