1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-20 21:19:10 +00:00

(svn r10684) -Codechange: some more coding style related changes. Primarily moving { to a new line.

This commit is contained in:
rubidium
2007-07-25 00:16:30 +00:00
parent e640900e8a
commit b290268645
9 changed files with 49 additions and 42 deletions

View File

@@ -270,7 +270,8 @@ static void SlWriteSimpleGamma(uint i)
}
/** Return how many bytes used to encode a gamma value */
static inline uint SlGetGammaLength(uint i) {
static inline uint SlGetGammaLength(uint i)
{
return 1 + (i >= (1 << 7)) + (i >= (1 << 14)) + (i >= (1 << 21));
}