summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-arcade/performous/files/performous-0.6.1-libpng.patch')
-rw-r--r--games-arcade/performous/files/performous-0.6.1-libpng.patch11
1 files changed, 0 insertions, 11 deletions
diff --git a/games-arcade/performous/files/performous-0.6.1-libpng.patch b/games-arcade/performous/files/performous-0.6.1-libpng.patch
deleted file mode 100644
index 2633e77c0fbb..000000000000
--- a/games-arcade/performous/files/performous-0.6.1-libpng.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- game/image.hh.old 2012-02-19 09:20:09.215987761 +0100
-+++ game/image.hh 2012-02-19 09:20:50.418077218 +0100
-@@ -26,7 +26,7 @@
- }
- void loadPNG_internal(png_structp pngPtr, png_infop infoPtr, std::ifstream& file, std::vector<unsigned char>& image, std::vector<png_bytep>& rows, unsigned& w, unsigned& h) {
- if (setjmp(png_jmpbuf(pngPtr))) throw std::runtime_error("Reading PNG failed");
-- png_set_read_fn(pngPtr,(voidp)&file, readPngHelper);
-+ png_set_read_fn(pngPtr,(png_voidp)&file, readPngHelper);
- png_read_info(pngPtr, infoPtr);
- png_set_expand(pngPtr); // Expand everything to RGB(A)
- png_set_strip_16(pngPtr); // Strip everything down to 8 bit/component