1
0
Fork 0

(svn r6078) -Fix: forgot one uint16 -> Date conversion. Tnx to #openttdcoop team for detecting and Rubidium for finding the cause.

release/0.5
truelight 2006-08-23 20:46:54 +00:00
parent 7271896810
commit ad3feef289
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@ typedef struct TextEffect {
typedef struct TextMessage {
char message[MAX_TEXTMESSAGE_LENGTH];
uint16 color;
uint16 end_date;
Date end_date;
} TextMessage;
#define MAX_CHAT_MESSAGES 10