fix bug in option

This commit is contained in:
onyx-and-iris 2023-07-17 06:48:59 +01:00
parent f03a44044d
commit d93ffc90a0

View File

@ -10,7 +10,7 @@ module Voicemeeter
make_accessor_int :sr make_accessor_int :sr
make_accessor_bool :asiosr, :monitoronsel, :slidermode make_accessor_bool :asiosr, :monitoronsel, :slidermode
@delay = (0...remote.kind.phys_out).map { |i| OptionDelay(remote, i) } @delay = (0...remote.kind.phys_out).map { |i| OptionDelay.new(remote, i) }
@buffer = OptionBuffer.new(remote) @buffer = OptionBuffer.new(remote)
@mode = OptionMode.new(remote) @mode = OptionMode.new(remote)
end end