summaryrefslogtreecommitdiff
path: root/heightmap.c
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2006-09-04 20:40:33 +0000
committerrubidium <rubidium@openttd.org>2006-09-04 20:40:33 +0000
commit63687763e9680663e68754b47ee9f1511641faf8 (patch)
treeb1e52d993ce60e919358d998b36ea08adfe26cba /heightmap.c
parenta7cfb80c40d9a4c544ece10872fd3808f9f59f8d (diff)
downloadopenttd-63687763e9680663e68754b47ee9f1511641faf8.tar.xz
(svn r6381) -Cleanup: make the '/* */' comments that span multiple lines more uniform.
-Cleanup: whitespace alignment of a few tables.
Diffstat (limited to 'heightmap.c')
-rw-r--r--heightmap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/heightmap.c b/heightmap.c
index 8bc3f63a5..ddcc50ccd 100644
--- a/heightmap.c
+++ b/heightmap.c
@@ -121,7 +121,7 @@ static bool ReadHeightmapPNG(char *filename, uint *x, uint *y, byte **map)
png_init_io(png_ptr, fp);
/* Allocate memory and read image, without alpha or 16-bit samples
- * (result is either 8-bit indexed/grayscale or 24-bit RGB) */
+ * (result is either 8-bit indexed/grayscale or 24-bit RGB) */
png_set_packing(png_ptr);
png_read_png(png_ptr, info_ptr, PNG_TRANSFORM_PACKING | PNG_TRANSFORM_STRIP_ALPHA | PNG_TRANSFORM_STRIP_16, NULL);