Browse Source

Port.hpp - suppress warning when building plugins

pull/1941/head
Steve Russell 1 month ago
parent
commit
647fcb699a
1 changed files with 2 additions and 0 deletions
  1. +2
    -0
      include/engine/Port.hpp

+ 2
- 0
include/engine/Port.hpp View File

@@ -160,6 +160,8 @@ struct Port {
}
// Set higher channel voltages to 0
for (uint8_t c = channels; c < this->channels; c++) {
if (c >= PORT_MAX_CHANNELS)
__builtin_unreachable();
voltages[c] = 0.f;
}
// Don't allow caller to set port as disconnected


Loading…
Cancel
Save