change IF Shift Step 1 -> 50Hz

This commit is contained in:
phdlee 2018-01-31 17:53:20 +09:00
parent 4745790dfa
commit 3d019cdd44
1 changed files with 2 additions and 2 deletions

View File

@ -303,9 +303,9 @@ void menuIFSToggle(int btn){
knob = enc_read();
if (knob != 0){
if (knob < 0)
ifShiftValue -= 1l;
ifShiftValue -= 50l;
else if (knob > 0)
ifShiftValue += 1;
ifShiftValue += 50;
needApplyChangeValue = 1;
}