lang: fix RevDelay's arg count

This commit is contained in:
Luna 2019-08-27 14:17:15 -03:00
parent cfec45eb6c
commit fecd3b2e69
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ pub const Lang = struct {
.Highpass => try self.expectFloat(5, cmd.args),
.Delay => try self.expectFloat(12, cmd.args),
.Vinyl => try self.expectFloat(7, cmd.args),
.RevDelay => try self.expectFloat(5, cmd.args),
.RevDelay => try self.expectFloat(7, cmd.args),
.Noise => try self.expectFloat(4, cmd.args),
.WildNoise => try self.expectFloat(4, cmd.args),
.Write => try self.expectFloat(3, cmd.args),