summaryrefslogtreecommitdiff
path: root/src/heightmap.cpp
diff options
context:
space:
mode:
authorbelugas <belugas@openttd.org>2007-03-01 01:24:44 +0000
committerbelugas <belugas@openttd.org>2007-03-01 01:24:44 +0000
commit978d7da81883c775c45b1bac64ce8b73f58d6d2f (patch)
treeb54eae356dabaadef12af40bb13f3e6e4f25c59e /src/heightmap.cpp
parent66487d59fd5fdeb253361865cb4322347b0b18fb (diff)
downloadopenttd-978d7da81883c775c45b1bac64ce8b73f58d6d2f.tar.xz
(svn r8950) -Cleanup: doxygen changes. Mostly @files missing tags and a few comments style.
Diffstat (limited to 'src/heightmap.cpp')
-rw-r--r--src/heightmap.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/heightmap.cpp b/src/heightmap.cpp
index 0e80ca2b9..6fb0bfe4c 100644
--- a/src/heightmap.cpp
+++ b/src/heightmap.cpp
@@ -1,5 +1,7 @@
/* $Id$ */
+/** @file heightmap.cpp */
+
#include "stdafx.h"
#include "openttd.h"
#include "variables.h"
@@ -226,7 +228,7 @@ static bool ReadHeightmapBMP(char *filename, uint *x, uint *y, byte **map)
BmpData data;
BmpBuffer buffer;
- // Init BmpData
+ /* Init BmpData */
memset(&data, 0, sizeof(data));
f = fopen(filename, "rb");