From 15df0224e149ada5e5598b611a06370fcfc0c2f8 Mon Sep 17 00:00:00 2001 From: Lucas CHOLLET Date: Sun, 11 Jun 2023 19:17:16 -0400 Subject: [PATCH] LibGfx/PNG: Remove an unused field in `PNGLoadingContext` --- Userland/Libraries/LibGfx/ImageFormats/PNGLoader.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibGfx/ImageFormats/PNGLoader.cpp b/Userland/Libraries/LibGfx/ImageFormats/PNGLoader.cpp index f476a092e1..19fa04465a 100644 --- a/Userland/Libraries/LibGfx/ImageFormats/PNGLoader.cpp +++ b/Userland/Libraries/LibGfx/ImageFormats/PNGLoader.cpp @@ -180,7 +180,6 @@ struct PNGLoadingContext { u32 animation_loop_count { 0 }; Optional last_completed_animation_frame_index; bool is_first_idat_part_of_animation { false }; - bool has_seen_zlib_header { false }; bool has_seen_iend { false }; bool has_seen_idat_chunk { false }; bool has_seen_actl_chunk_before_idat { false };