Browse Source
change defaults in HostMIDI.cpp
disable mw/pw smoothing by default, set pwRange to zero so it doesn't unexpectedly affect V/OCT (restores behaviour of previous releases)
pull/199/head
dingodoppelt
GitHub
3 years ago
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
2 additions and
2 deletions
-
plugins/Cardinal/src/HostMIDI.cpp
|
|
|
@@ -143,10 +143,10 @@ struct HostMIDI : TerminalModule { |
|
|
|
lastProcessCounter = 0; |
|
|
|
wasPlaying = false; |
|
|
|
channel = 0; |
|
|
|
smooth = true; |
|
|
|
smooth = false; |
|
|
|
channels = 1; |
|
|
|
polyMode = ROTATE_MODE; |
|
|
|
pwRange = 2; |
|
|
|
pwRange = 0; |
|
|
|
panic(); |
|
|
|
} |
|
|
|
|
|
|
|
|