mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Fix width and height being reported in wrong order
This commit is contained in:
@@ -254,8 +254,8 @@ public:
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
options.verbosePrint(Options::VERB_INTERM,
|
options.verbosePrint(Options::VERB_INTERM,
|
||||||
"Input image: %" PRIu32 "x%" PRIu32 " pixels, %dbpp %s, %s\n", height,
|
"Input image: %" PRIu32 "x%" PRIu32 " pixels, %dbpp %s, %s\n", width,
|
||||||
width, bitDepth, colorTypeName(), interlaceTypeName());
|
height, bitDepth, colorTypeName(), interlaceTypeName());
|
||||||
|
|
||||||
if (png_get_PLTE(png, info, &embeddedPal, &nbColors) != 0) {
|
if (png_get_PLTE(png, info, &embeddedPal, &nbColors) != 0) {
|
||||||
int nbTransparentEntries;
|
int nbTransparentEntries;
|
||||||
|
|||||||
Reference in New Issue
Block a user