(svn r17692) -Codechange: minor coding style fixes

This commit is contained in:
smatz
2009-10-04 17:10:57 +00:00
parent cd3f93c8c6
commit 7c74afb1c3
12 changed files with 28 additions and 16 deletions

View File

@@ -181,7 +181,8 @@ struct HeightMap
* @param y Y position
* @return height as fixed point number
*/
inline height_t &height(uint x, uint y) {
inline height_t &height(uint x, uint y)
{
return h[x + y * dim_x];
}
};