This website works better with JavaScript.
Home
Help
Sign In
VCVRack
/
Rack
mirror of
https://github.com/VCVRack/Rack.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
43
Wiki
Activity
Browse Source
Fix sync if ccNum is changed by modifying the text
tags/v0.5.0
ben
7 years ago
parent
8d5dfc40b9
commit
9c652e196d
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/core/MidiCCToCV.cpp
+ 1
- 1
src/core/MidiCCToCV.cpp
View File
@@ -214,7 +214,7 @@ void CCTextField::onTextChange() {
return;
}
if (!module->ccNumInited[num]
&& *ccNum != std::stoi(text)
) {
if (!module->ccNumInited[num]) {
module->ccSync[num] = 0;
module->ccSyncFirst[num] = true;
}
Write
Preview
Loading…
Cancel
Save