projects
/
pihpsdr.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
a75ef85
)
ext.c: corrected step size change
author
DL1YCF
<dl1ycf@darc.de>
Thu, 3 Jun 2021 09:59:10 +0000
(11:59 +0200)
committer
DL1YCF
<dl1ycf@darc.de>
Thu, 3 Jun 2021 09:59:10 +0000
(11:59 +0200)
ext.c
patch
|
blob
|
history
diff --git
a/ext.c
b/ext.c
index f0b798b3701cc8c0da65b5519d6b0c339409f7a0..3370fa8d990ab7432127bbce38703c9a72e80593 100644
(file)
--- a/
ext.c
+++ b/
ext.c
@@
-206,7
+206,7
@@
void update_vfo_step(int direction) {
} else {
i--;
}
- if (i >= STEPS) i=STEPS;
+ if (i >= STEPS) i=STEPS
-1
;
if (i < 0 ) i=0;
step=steps[i];