From 4be1d9c8acc0ce924ab6de9a56a4bde833c5329d Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:50:37 -0500 Subject: [PATCH] spelling: transparency Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/applib/graphics/gbitmap_sequence.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/applib/graphics/gbitmap_sequence.c b/src/fw/applib/graphics/gbitmap_sequence.c index f259543a..682b1e07 100644 --- a/src/fw/applib/graphics/gbitmap_sequence.c +++ b/src/fw/applib/graphics/gbitmap_sequence.c @@ -288,7 +288,7 @@ bool gbitmap_sequence_update_bitmap_next_frame(GBitmapSequence *bitmap_sequence, const bool bitmap_supports_transparency = (bitmap_format != GBitmapFormat1Bit); // DISPOSE_OP_BACKGROUND sets the background to black with transparency (0x00) - // If we don't support tranparency, just do nothing. + // If we don't support transparency, just do nothing. if (bitmap_supports_transparency && (png_decoder_data->last_dispose_op == APNG_DISPOSE_OP_BACKGROUND)) { const uint32_t y_origin = bitmap->bounds.origin.y + png_decoder_data->previous_yoffset;