From 83996b889fba82dc24f716203f2450b59fa622dc Mon Sep 17 00:00:00 2001 From: Luna Date: Sun, 31 May 2020 21:55:27 -0300 Subject: [PATCH] make rotate not be a typed command --- src/lang.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lang.zig b/src/lang.zig index 04195f5..cc8d58a 100644 --- a/src/lang.zig +++ b/src/lang.zig @@ -520,7 +520,7 @@ pub const Lang = struct { // Based on the command struct fields, we can parse the arguments. var cmd = try self.allocator.create(command_struct); const is_lv2_command = switch (command_struct.base_tag) { - .noop, .load, .quicksave, .runqs => false, + .noop, .load, .quicksave, .runqs, .rotate => false, else => command_struct.command_type == .lv2_command, };