(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

@@ -23,7 +23,7 @@ enum {
MAX_ANIMATED_TILES = 256,
};
typedef struct TextEffect {
struct TextEffect {
StringID string_id;
int32 x;
int32 y;
@@ -32,14 +32,14 @@ typedef struct TextEffect {
uint16 duration;
uint32 params_1;
uint32 params_2;
} TextEffect;
};
typedef struct TextMessage {
struct TextMessage {
char message[MAX_TEXTMESSAGE_LENGTH];
uint16 color;
Date end_date;
} TextMessage;
};
static TextEffect _text_effect_list[MAX_TEXT_MESSAGES];
static TextMessage _textmsg_list[MAX_CHAT_MESSAGES];