(svn r907) Sprinkle holy ANSI water:

- "inline" must before the return type (and after "static")
- Initialise all struct members, not just some of them
- Remove (one) spurious semicolon
This commit is contained in:
tron
2004-12-03 07:43:00 +00:00
parent b7f0b278fb
commit c00258237e
12 changed files with 38 additions and 31 deletions

View File

@@ -288,7 +288,7 @@ static const GameSettingData _game_setting_info[] = {
{0,2,1,STR_6839_PERMISSIVE},
};
static bool FORCEINLINE GetBitAndShift(uint32 *b)
static inline bool GetBitAndShift(uint32 *b)
{
uint32 x = *b;
*b >>= 1;