diff options
author | Chris Robinson <[email protected]> | 2022-08-28 06:11:40 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2022-08-28 06:11:40 -0700 |
commit | 84134d7399fec757fe2051bb74a018a9fa15b7b9 (patch) | |
tree | 3b830600de6d5e55fc02afee55d33d84713df5b3 /core/device.h | |
parent | 057a350c1e15906d12559acb56115fbef2d9a3bf (diff) |
Allow the remix tables to be variable length
Diffstat (limited to 'core/device.h')
-rw-r--r-- | core/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/device.h b/core/device.h index feb8f0b8..d626f2c4 100644 --- a/core/device.h +++ b/core/device.h @@ -69,7 +69,7 @@ struct InputRemixMap { struct TargetMix { Channel channel; float mix; }; Channel channel; - std::array<TargetMix,2> targets; + al::span<const TargetMix> targets; }; |