You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

15 lines
216B

  1. #include "engine/Wire.hpp"
  2. namespace rack {
  3. void Wire::step() {
  4. // Copy output to input
  5. float value = outputModule->outputs[outputId].value;
  6. inputModule->inputs[inputId].value = value;
  7. }
  8. } // namespace rack