Browse Source

Rescale SEQ3 row lights

tags/v0.5.0
Andrew Belt 7 years ago
parent
commit
ab50308ab1
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/SEQ3.cpp

+ 3
- 3
src/SEQ3.cpp View File

@@ -203,9 +203,9 @@ void SEQ3::step() {
outputs[GATES_OUTPUT].value = gatesOn ? 10.0 : 0.0; outputs[GATES_OUTPUT].value = gatesOn ? 10.0 : 0.0;
lights[RESET_LIGHT].value = resetLight; lights[RESET_LIGHT].value = resetLight;
lights[GATES_LIGHT].value = gatesOn ? 1.0 : 0.0; lights[GATES_LIGHT].value = gatesOn ? 1.0 : 0.0;
lights[ROW_LIGHTS].value = row1;
lights[ROW_LIGHTS + 1].value = row2;
lights[ROW_LIGHTS + 2].value = row3;
lights[ROW_LIGHTS].value = row1 / 10.0;
lights[ROW_LIGHTS + 1].value = row2 / 10.0;
lights[ROW_LIGHTS + 2].value = row3 / 10.0;
} }






Loading…
Cancel
Save