mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-11-16 05:11:49 -05:00
ValueDialZ: fix find exponent. Fixes #1158
This commit is contained in:
parent
9a733527bb
commit
22381c5dbc
@ -173,7 +173,8 @@ quint64 ValueDialZ::findExponent(int digit)
|
|||||||
|
|
||||||
for (int i = s+1; i < d+s; i++)
|
for (int i = s+1; i < d+s; i++)
|
||||||
{
|
{
|
||||||
if ((i%4 == 0) || (m_positiveOnly && (i == d+s-1))) { // non digit positions
|
// if ((i%4 == 0) || (m_positiveOnly && (i == d+s-1))) { // non digit positions
|
||||||
|
if (i%4 == 0) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user