This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Fundamental
mirror of
https://github.com/VCVRack/Fundamental.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
25
Wiki
Activity
Browse Source
Logic: Fix polyphonic output assignment.
tags/v2.3.1
Andrew Belt
1 year ago
parent
c8ded5ea10
commit
8f17ca4672
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/Logic.cpp
+ 1
- 1
src/Logic.cpp
View File
@@ -76,7 +76,7 @@ struct Logic : Module {
};
for (int i = 0; i < 8; i++) {
outputs[NOTA_OUTPUT + i].setVoltage(states[i] ? 10.f : 0.f);
outputs[NOTA_OUTPUT + i].setVoltage(states[i] ? 10.f : 0.f
, c
);
if (states[i])
anyState[i] = true;
}
Write
Preview
Loading…
Cancel
Save