openclonk/planet/Objects.ocd/Effects.ocd/Particles.ocd/SmokeDirty.ocd
Julius Michaelis 0df19491e7 Get rid of incorrect sRGB headers in png files.
libpng >1.6 keeps nagging because of that.

Quick bash script to do so:
find . -name *.png \
| while read f; do
	n=$(pngcrush -ow -rem allb-reduce "$f" 2>&1 | grep -c 'incorrect sRGB');
	if [[ $n -gt 0 ]]; then
		git add "$f"
	else
		git checkout "$f"
	fi
done
2015-09-12 21:27:53 +09:00
..
Graphics.png Get rid of incorrect sRGB headers in png files. 2015-09-12 21:27:53 +09:00
Particle.txt moved all particle definition into separate folder Particles.ocd 2014-10-26 19:49:22 +01:00