Restore High Resolution Hour Hand (#7392)

* Restore High Resolution Hour Hand

* Drop the int16_t
This commit is contained in:
Jason P 2025-07-20 13:43:54 -05:00 committed by GitHub
parent a9c9b96eb6
commit bc9023399d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -365,6 +365,9 @@ void drawAnalogClockFrame(OLEDDisplay *display, OLEDDisplayUiState *state, int16
// hour hand radius and y coordinate
int16_t hourHandRadius = radius * 0.35;
if (isHighResolution) {
hourHandRadius = radius * 0.55;
}
int16_t hourHandNoonY = centerY - hourHandRadius;
display->setColor(OLEDDISPLAY_COLOR::WHITE);