spelling: equal

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 13:29:26 -05:00
parent 0cf7d4d8e4
commit 11a46154bc
3 changed files with 3 additions and 3 deletions

View file

@ -516,7 +516,7 @@ void graphics_draw_circle(GContext* ctx, GPoint p, uint16_t radius) {
}
if (radius == 0) {
// Special case radius 0 to fill a circle with radius eqaul to half the stroke width
// Special case radius 0 to fill a circle with radius equal to half the stroke width
// Backup the fill color and set that to the current stroke color since the fill color
// is what is used for fill circle. Restore the fill color afterwards.
GColor backup_fill_color = ctx->draw_state.fill_color;