src/settings_gui.cpp
changeset 6574 e1d1a12faaf7
parent 6573 7624f942237f
child 6581 7a557736ab52
--- a/src/settings_gui.cpp	Wed Mar 07 11:47:46 2007 +0000
+++ b/src/settings_gui.cpp	Wed Mar 07 12:11:48 2007 +0000
@@ -295,12 +295,12 @@
 	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 @@
 	"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