# HG changeset patch # User truelight # Date 1156366014 0 # Node ID 8a38cd70dab9af79f401cb8e25ebcb5bc92371da # Parent 7083edaf2c0f9cb2ad6efaf844194bbfb803185e (svn r6078) -Fix: forgot one uint16 -> Date conversion. Tnx to #openttdcoop team for detecting and Rubidium for finding the cause. diff -r 7083edaf2c0f -r 8a38cd70dab9 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