(svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};

This commit is contained in:
rubidium
2007-03-07 12:11:48 +00:00
parent 36bb92ae24
commit 24c4d5b06d
138 changed files with 779 additions and 789 deletions

View File

@@ -295,12 +295,12 @@ void ShowGameOptions()
AllocateWindowDesc(&_game_options_desc);
}
typedef struct {
struct GameSettingData {
int16 min;
int16 max;
int16 step;
StringID str;
} GameSettingData;
};
static const GameSettingData _game_setting_info[] = {
{ 0, 7, 1, STR_NULL},
@@ -655,16 +655,16 @@ static const char *_patches_vehicles[] = {
"freight_trains",
};
typedef struct PatchEntry {
struct PatchEntry {
const SettingDesc *setting;
uint index;
} PatchEntry;
};
typedef struct PatchPage {
struct PatchPage {
const char **names;
PatchEntry *entries;
byte num;
} PatchPage;
};
/* PatchPage holds the categories, the number of elements in each category
* and (in NULL) a dynamic array of settings based on the string-representations