(svn r17692) -Codechange: minor coding style fixes

This commit is contained in:
smatz
2009-10-04 17:10:57 +00:00
parent 1666f7a1a9
commit 32cbe57178
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];
}
};