From 2437efdba92eeb6a7d9c6554f79247e81710d9f1 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 14:54:34 -0500 Subject: [PATCH] spelling: issues Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/graphics_bitmap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/graphics/graphics_bitmap.c b/src/fw/applib/graphics/graphics_bitmap.c index 5c6099df..b67be002 100644 --- a/src/fw/applib/graphics/graphics_bitmap.c +++ b/src/fw/applib/graphics/graphics_bitmap.c @@ -215,7 +215,7 @@ void graphics_draw_rotated_bitmap(GContext* ctx, GBitmap *src, GPoint src_ic, in const int32_t width = 2 * (max_width + 1); // Add one more pixel in case on the edge const int32_t height = 2 * (max_height + 1); // Add one more pixel in case on the edge - // add two pixels just in case of rounding isssues + // add two pixels just in case of rounding issues const int32_t max_distance = integer_sqrt((width * width) + (height * height)) + 2; const int32_t min_x = src_ic.x - max_distance; const int32_t min_y = src_ic.y - max_distance;