1
Fork 0

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)
This commit is contained in:
dingodoppelt 2022-03-24 19:07:09 +01:00 committed by Filipe Coelho
parent cab2aa9862
commit 849bacebfd
1 changed files with 2 additions and 2 deletions

View File

@ -143,10 +143,10 @@ struct HostMIDI : TerminalModule {
lastProcessCounter = 0; lastProcessCounter = 0;
wasPlaying = false; wasPlaying = false;
channel = 0; channel = 0;
smooth = true; smooth = false;
channels = 1; channels = 1;
polyMode = ROTATE_MODE; polyMode = ROTATE_MODE;
pwRange = 2; pwRange = 0;
panic(); panic();
} }