diff --git a/Libraries/LibGfx/PNGLoader.cpp b/Libraries/LibGfx/PNGLoader.cpp index bc2d6630c4..199da1b200 100644 --- a/Libraries/LibGfx/PNGLoader.cpp +++ b/Libraries/LibGfx/PNGLoader.cpp @@ -387,7 +387,7 @@ NEVER_INLINE FLATTEN static void unfilter(PNGLoadingContext& context) if (context.bit_depth == 8) { unpack_triplets_without_alpha(context); } else if (context.bit_depth == 16) { - unpack_grayscale_without_alpha(context); + unpack_triplets_without_alpha(context); } else { ASSERT_NOT_REACHED(); }