ValueDialZ: fix find exponent. Fixes #1158

pull/1178/head
f4exb 2022-03-03 23:23:54 +01:00
rodzic 9a733527bb
commit 22381c5dbc
1 zmienionych plików z 2 dodań i 1 usunięć

Wyświetl plik

@ -173,7 +173,8 @@ quint64 ValueDialZ::findExponent(int digit)
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;
}