From 4af8c2d5e17fe04d0e352977993fced13e08b787 Mon Sep 17 00:00:00 2001 From: alberth Date: Sun, 1 Jan 2012 17:22:32 +0000 Subject: (svn r23704) -Doc: Doxygen comment fixes and additions. --- src/heightmap.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/heightmap.cpp') diff --git a/src/heightmap.cpp b/src/heightmap.cpp index 1e6531fb0..be51dc004 100644 --- a/src/heightmap.cpp +++ b/src/heightmap.cpp @@ -28,7 +28,7 @@ */ static inline byte RGBToGrayscale(byte red, byte green, byte blue) { - /* To avoid doubles and stuff, multiple it with a total of 65536 (16bits), then + /* To avoid doubles and stuff, multiply it with a total of 65536 (16bits), then * divide by it to normalize the value to a byte again. */ return ((red * 19595) + (green * 38470) + (blue * 7471)) / 65536; } -- cgit v1.2.3-54-g00ecf