fixes bug in RecorderMode

This commit is contained in:
onyx-and-iris 2023-07-16 22:33:21 +01:00
parent d387503fa2
commit ae30e929ac

View File

@ -25,7 +25,7 @@ module Voicemeeter
make_accessor_int :bitresolution, :channel, :kbps make_accessor_int :bitresolution, :channel, :kbps
make_accessor_float :gain make_accessor_float :gain
@mode = RecorderMode.new(self) @mode = RecorderMode.new(remote)
@armstrip = (0...remote.kind.num_strip).map { |j| RecorderArmStrip.new(remote, j) } @armstrip = (0...remote.kind.num_strip).map { |j| RecorderArmStrip.new(remote, j) }
@armbus = (0...remote.kind.num_bus).map { |j| RecorderArmBus.new(remote, j) } @armbus = (0...remote.kind.num_bus).map { |j| RecorderArmBus.new(remote, j) }
end end
@ -64,7 +64,6 @@ module Voicemeeter
"recorder.mode" "recorder.mode"
end end
end end
end
class RecorderArmChannel < IRemote class RecorderArmChannel < IRemote
def initialize(remote, j) def initialize(remote, j)
@ -89,3 +88,4 @@ module Voicemeeter
end end
end end
end end
end