aboutsummaryrefslogtreecommitdiffstats
path: root/core/device.h
diff options
context:
space:
mode:
authorChris Robinson <[email protected]>2022-08-28 06:11:40 -0700
committerChris Robinson <[email protected]>2022-08-28 06:11:40 -0700
commit84134d7399fec757fe2051bb74a018a9fa15b7b9 (patch)
tree3b830600de6d5e55fc02afee55d33d84713df5b3 /core/device.h
parent057a350c1e15906d12559acb56115fbef2d9a3bf (diff)
Allow the remix tables to be variable length
Diffstat (limited to 'core/device.h')
-rw-r--r--core/device.h2
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;
};