(svn r6078) -Fix: forgot one uint16 -> Date conversion. Tnx to #openttdcoop team for detecting and Rubidium for finding the cause.
authortruelight
Wed, 23 Aug 2006 20:46:54 +0000
changeset 4363 3a3a2a3dda00
parent 4362 93f7a480a1f0
child 4364 0fc1e43842f6
(svn r6078) -Fix: forgot one uint16 -> Date conversion. Tnx to #openttdcoop team for detecting and Rubidium for finding the cause.
texteff.c
--- 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