# HG changeset patch # User Darkvater # Date 1155384788 0 # Node ID a1d404ac9820583a7c5063ee7445558c6ab70fc1 # Parent e9bd7b46e7329803690313ea9247c0d2d788ee72 (svn r5858) - Backport from trunk (r5801): The exception dialog showed the last modification-date of win32.c instead of the last compilation-date. diff -r e9bd7b46e732 -r a1d404ac9820 win32.c --- a/win32.c Sat Aug 12 12:11:54 2006 +0000 +++ b/win32.c Sat Aug 12 12:13:08 2006 +0000 @@ -22,10 +22,6 @@ static bool _has_console; -#if defined(__MINGW32__) || defined(__CYGWIN__) - #define __TIMESTAMP__ __DATE__ __TIME__ -#endif - #if defined(__MINGW32__) #include #endif @@ -445,10 +441,10 @@ { SYSTEMTIME time; GetLocalTime(&time); - output += sprintf(output, + output += snprintf(output, 8192, "*** OpenTTD Crash Report ***\r\n" "Date: %d-%.2d-%.2d %.2d:%.2d:%.2d\r\n" - "Build: %s built on " __TIMESTAMP__ "\r\n", + "Build: %s built on " __DATE__ " " __TIME__ "\r\n", time.wYear, time.wMonth, time.wDay,