openclonk/planet/Objects.ocd/Effects.ocd/Particles.ocd/BlueFireTrail.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 added item spawning functionality and better effect for meteor; added alien meteor skin 2015-09-01 22:42:14 +02:00