Skip to content

Commit cf6ff70

Browse files
committed
fixed rebase issue
1 parent b30aed5 commit cf6ff70

File tree

1 file changed

+25
-25
lines changed

1 file changed

+25
-25
lines changed

src/state/state.ts

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -301,11 +301,11 @@ export class WingState implements IStoredChannelSubject {
301301

302302
// Channel strips
303303
for (let ch = 1; ch <= model.channels; ch++) {
304-
self.sendCommand(Commands.Channel.InputGain(ch))
305-
self.sendCommand(Commands.Channel.Color(ch))
306-
self.sendCommand(Commands.Channel.Mute(ch))
307-
self.sendCommand(Commands.Channel.Fader(ch))
308-
self.sendCommand(Commands.Channel.Pan(ch))
304+
void sendCommand(Commands.Channel.InputGain(ch))
305+
void sendCommand(Commands.Channel.Color(ch))
306+
void sendCommand(Commands.Channel.Mute(ch))
307+
void sendCommand(Commands.Channel.Fader(ch))
308+
void sendCommand(Commands.Channel.Pan(ch))
309309

310310
for (let bus = 1; bus <= model.busses; bus++) {
311311
void sendCommand(Commands.Channel.SendOn(ch, bus))
@@ -325,11 +325,11 @@ export class WingState implements IStoredChannelSubject {
325325

326326
// Auxes
327327
for (let aux = 1; aux <= model.auxes; aux++) {
328-
self.sendCommand(Commands.Aux.InputGain(aux))
329-
self.sendCommand(Commands.Aux.Color(aux))
330-
self.sendCommand(Commands.Aux.Mute(aux))
331-
self.sendCommand(Commands.Aux.Fader(aux))
332-
self.sendCommand(Commands.Aux.Pan(aux))
328+
void sendCommand(Commands.Aux.InputGain(aux))
329+
void sendCommand(Commands.Aux.Color(aux))
330+
void sendCommand(Commands.Aux.Mute(aux))
331+
void sendCommand(Commands.Aux.Fader(aux))
332+
void sendCommand(Commands.Aux.Pan(aux))
333333

334334
for (let main = 1; main <= model.mains; main++) {
335335
void sendCommand(Commands.Aux.MainSendOn(aux, main))
@@ -349,10 +349,10 @@ export class WingState implements IStoredChannelSubject {
349349

350350
// Busses
351351
for (let bus = 1; bus <= model.busses; bus++) {
352-
self.sendCommand(Commands.Bus.Mute(bus))
353-
self.sendCommand(Commands.Bus.Fader(bus))
354-
self.sendCommand(Commands.Bus.Pan(bus))
355-
self.sendCommand(Commands.Bus.Color(bus))
352+
void sendCommand(Commands.Bus.Mute(bus))
353+
void sendCommand(Commands.Bus.Fader(bus))
354+
void sendCommand(Commands.Bus.Pan(bus))
355+
void sendCommand(Commands.Bus.Color(bus))
356356

357357
for (let main = 1; main <= model.mains; main++) {
358358
void sendCommand(Commands.Bus.MainSendOn(bus, main))
@@ -373,18 +373,18 @@ export class WingState implements IStoredChannelSubject {
373373

374374
// Matrices
375375
for (let mtx = 1; mtx <= model.matrices; mtx++) {
376-
self.sendCommand(Commands.Matrix.Mute(mtx))
377-
self.sendCommand(Commands.Matrix.Fader(mtx))
378-
self.sendCommand(Commands.Matrix.Pan(mtx))
379-
self.sendCommand(Commands.Matrix.Color(mtx))
376+
void sendCommand(Commands.Matrix.Mute(mtx))
377+
void sendCommand(Commands.Matrix.Fader(mtx))
378+
void sendCommand(Commands.Matrix.Pan(mtx))
379+
void sendCommand(Commands.Matrix.Color(mtx))
380380
}
381381

382382
// Mains
383383
for (let main = 1; main <= model.mains; main++) {
384-
self.sendCommand(Commands.Main.Mute(main))
385-
self.sendCommand(Commands.Main.Fader(main))
386-
self.sendCommand(Commands.Main.Pan(main))
387-
self.sendCommand(Commands.Main.Color(main))
384+
void sendCommand(Commands.Main.Mute(main))
385+
void sendCommand(Commands.Main.Fader(main))
386+
void sendCommand(Commands.Main.Pan(main))
387+
void sendCommand(Commands.Main.Color(main))
388388

389389
for (let mtx = 1; mtx <= model.matrices; mtx++) {
390390
void sendCommand(Commands.Main.MatrixSendOn(main, mtx))
@@ -395,9 +395,9 @@ export class WingState implements IStoredChannelSubject {
395395

396396
// DCAs
397397
for (let dca = 1; dca <= model.dcas; dca++) {
398-
self.sendCommand(Commands.Dca.Mute(dca))
399-
self.sendCommand(Commands.Dca.Fader(dca))
400-
self.sendCommand(Commands.Dca.Color(dca))
398+
void sendCommand(Commands.Dca.Mute(dca))
399+
void sendCommand(Commands.Dca.Fader(dca))
400+
void sendCommand(Commands.Dca.Color(dca))
401401
}
402402

403403
// Mute Groups

0 commit comments

Comments
 (0)