diff options
author | truelight <truelight@openttd.org> | 2007-03-05 18:00:18 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2007-03-05 18:00:18 +0000 |
commit | 657be6d2d0a4f98543f915a367b51b396e3a3c2c (patch) | |
tree | b7513a24edd329b59db2259059fc0d6700b7b55d | |
parent | 53caedd0bfcd2afee1f99a9fadf2d3cfa378df17 (diff) | |
download | openttd-657be6d2d0a4f98543f915a367b51b396e3a3c2c.tar.xz |
(svn r9019) -Fix: use <> for system-headers
-rw-r--r-- | src/heightmap.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/heightmap.cpp b/src/heightmap.cpp index 6fb0bfe4c..43f4e0c24 100644 --- a/src/heightmap.cpp +++ b/src/heightmap.cpp @@ -32,7 +32,7 @@ static inline byte RGBToGrayscale(byte red, byte green, byte blue) #ifdef WITH_PNG -#include "png.h" +#include <png.h> /** * The PNG Heightmap loader. |