Removed false decimal on signalmeter
This commit is contained in:
+2
-2
@@ -3354,8 +3354,8 @@ void ShowSignalLevel() {
|
|||||||
tftReplace(1, String(SStatusold / 10), String(SStatusprint / 10),
|
tftReplace(1, String(SStatusold / 10), String(SStatusprint / 10),
|
||||||
280, 104, FreqColor, FreqColorSmooth, BackgroundColor, 48);
|
280, 104, FreqColor, FreqColorSmooth, BackgroundColor, 48);
|
||||||
}
|
}
|
||||||
tftReplace(-1, "." + String(abs(SStatusold % 100)),
|
tftReplace(-1, "." + String(abs(SStatusold % 10)),
|
||||||
"." + String(abs(SStatusprint % 100)),
|
"." + String(abs(SStatusprint % 10)),
|
||||||
285, 102, FreqColor, FreqColorSmooth, BackgroundColor, 28);
|
285, 102, FreqColor, FreqColorSmooth, BackgroundColor, 28);
|
||||||
|
|
||||||
// Calculate segments for signal meter
|
// Calculate segments for signal meter
|
||||||
|
|||||||
Reference in New Issue
Block a user