# HG changeset patch # User rubidium # Date 1237127326 0 # Node ID fe10d122f7f118d7eb305561286a196ab5254d57 # Parent 41fcb66a1256fc222c348bb81d9522dd0242597e (svn r15720) -Change: put a bit more information into the crash log diff --git a/src/win32.cpp b/src/win32.cpp --- a/src/win32.cpp +++ b/src/win32.cpp @@ -485,14 +485,15 @@ output += seprintf(output, last, "*** OpenTTD Crash Report ***\r\n" "Date: %d-%.2d-%.2d %.2d:%.2d:%.2d\r\n" - "Build: %s built on " __DATE__ " " __TIME__ "\r\n", + "Build: %s (%d) built on " __DATE__ " " __TIME__ "\r\n", time.wYear, time.wMonth, time.wDay, time.wHour, time.wMinute, time.wSecond, - _openttd_revision + _openttd_revision, + _openttd_revision_modified ); }