From d755d296fc6c883dc974df40c2119a7cc0372d3b Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 10:57:48 -0500 Subject: [PATCH] spelling: more Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/graphics_circle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/graphics/graphics_circle.c b/src/fw/applib/graphics/graphics_circle.c index 6a614b1a..ad8e4b29 100644 --- a/src/fw/applib/graphics/graphics_circle.c +++ b/src/fw/applib/graphics/graphics_circle.c @@ -912,7 +912,7 @@ static void prv_fill_oval_precise(GContext *ctx, GPointPrecise center, int draw_max_top = MAX(center.y.integer - adjusted_top, 0); int draw_max_bottom = MAX(adjusted_bottom - center.y.integer, 0); int draw_min_top = MAX(center.y.integer - adjusted_bottom, 0); - // In case of odd line, center is with half pixel so we have to subtract one more more full line + // In case of odd line, center is with half pixel so we have to subtract one more full line int draw_min_bottom = MAX(adjusted_top - center.y.integer - 1, 0); // Apply clipped distances