(svn r6078) -Fix: forgot one uint16 -> Date conversion. Tnx to #openttdcoop team for detecting and Rubidium for finding the cause.
--- a/texteff.c Wed Aug 23 19:58:17 2006 +0000
+++ b/texteff.c Wed Aug 23 20:46:54 2006 +0000
@@ -31,7 +31,7 @@
typedef struct TextMessage {
char message[MAX_TEXTMESSAGE_LENGTH];
uint16 color;
- uint16 end_date;
+ Date end_date;
} TextMessage;
#define MAX_CHAT_MESSAGES 10