Changeset - r6222:448ee811d6cd
[Not reviewed]
master
0 1 0
truelight - 17 years ago 2007-03-05 18:00:18
truelight@openttd.org
(svn r9019) -Fix: use <> for system-headers
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
src/heightmap.cpp
Show inline comments
 
@@ -29,13 +29,13 @@ static inline byte RGBToGrayscale(byte r
 
	return ((red * 19595) + (green * 38470) + (blue * 7471)) / 65536;
 
}
 

	
 

	
 
#ifdef WITH_PNG
 

	
 
#include "png.h"
 
#include <png.h>
 

	
 
/**
 
 * The PNG Heightmap loader.
 
 */
 
static void ReadHeightmapPNGImageData(byte *map, png_structp png_ptr, png_infop info_ptr)
 
{
0 comments (0 inline, 0 general)