Fix clock rendering artifact

This commit is contained in:
Ilia Demianenko 2023-08-23 17:03:37 -07:00
parent d3e27df818
commit 543feffea9
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ ORCA_EXPORT void oc_on_frame_refresh(void)
oc_matrix_push(mat_transform(centerX, centerY, secondsRotation));
{
oc_set_color_rgba(1, 0.2, 0.2, 1);
oc_rounded_rectangle_fill(0, -2.5 * uiScale, clockRadius * 0.8f, 5 * uiScale, 5 * uiScale);
oc_rounded_rectangle_fill(0, -2.5 * uiScale, clockRadius * 0.8f, 5 * uiScale, 2.5 * uiScale);
oc_matrix_pop();
}