You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/games-arcade/performous/files/performous-1.1-jpeg-9c.patch

12 lines
591 B

--- a/common/image.cc
+++ b/common/image.cc
@@ -180,7 +180,7 @@
}
jpeg_create_decompress(&cinfo);
jpeg_mem_src(&cinfo, data.data(), data.size());
- if (jpeg_read_header(&cinfo, true) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string());
+ if (jpeg_read_header(&cinfo, TRUE) != JPEG_HEADER_OK) throw std::runtime_error("Cannot read header of " + filename.string());
jpeg_start_decompress(&cinfo);
bitmap.resize(cinfo.output_width, cinfo.output_height);
unsigned stride = (bitmap.width * 3 + 3) & ~3; // Number of bytes per row (word-aligned)