diff --git a/gui/pages.cpp b/gui/pages.cpp index 3632cc31..4df6a181 100644 --- a/gui/pages.cpp +++ b/gui/pages.cpp @@ -921,7 +921,7 @@ int PageManager::LoadPackage(std::string name, std::string package, std::string // Open the XML file LOGINFO("Loading package: %s (%s)\n", name.c_str(), package.c_str()); - if (mzOpenZipArchive(package.c_str(), &zip)) + if (1 || mzOpenZipArchive(package.c_str(), &zip)) { // We can try to load the XML directly... struct stat st; diff --git a/minui/resources.c b/minui/resources.c index 605edbca..fe1e9992 100644 --- a/minui/resources.c +++ b/minui/resources.c @@ -100,10 +100,10 @@ int res_create_surface(const char* name, gr_surface* pSurface) { int color_type, bit_depth; size_t width, height; - png_get_IHDR(png_ptr, info_ptr, width, height, &bit_depth, + png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL); - png_byte* channels = png_get_channels(png_ptr, info_ptr); + png_byte channels = png_get_channels(png_ptr, info_ptr); if (!(bit_depth == 8 && ((channels == 3 && color_type == PNG_COLOR_TYPE_RGB) || diff --git a/minuitwrp/resources.c b/minuitwrp/resources.c index 3b833cc7..4dd10a9d 100644 --- a/minuitwrp/resources.c +++ b/minuitwrp/resources.c @@ -100,10 +100,10 @@ int res_create_surface_png(const char* name, gr_surface* pSurface) { int color_type, bit_depth; size_t width, height; - png_get_IHDR(png_ptr, info_ptr, width, height, &bit_depth, + png_get_IHDR(png_ptr, info_ptr, &width, &height, &bit_depth, &color_type, NULL, NULL, NULL); - png_byte* channels = png_get_channels(png_ptr, info_ptr); + png_byte channels = png_get_channels(png_ptr, info_ptr); size_t stride = 4 * width; size_t pixelSize = stride * height;