From b53c115ec29edbdf37fd79624a27272f55151961 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Sun, 10 Jul 2022 12:14:24 +0200 Subject: [PATCH] Fix width and height being reported in wrong order --- src/gfx/process.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/gfx/process.cpp b/src/gfx/process.cpp index c3e1680e..612a46d9 100644 --- a/src/gfx/process.cpp +++ b/src/gfx/process.cpp @@ -254,8 +254,8 @@ public: } }; options.verbosePrint(Options::VERB_INTERM, - "Input image: %" PRIu32 "x%" PRIu32 " pixels, %dbpp %s, %s\n", height, - width, bitDepth, colorTypeName(), interlaceTypeName()); + "Input image: %" PRIu32 "x%" PRIu32 " pixels, %dbpp %s, %s\n", width, + height, bitDepth, colorTypeName(), interlaceTypeName()); if (png_get_PLTE(png, info, &embeddedPal, &nbColors) != 0) { int nbTransparentEntries;