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:
@@ -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));
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user