diff --git a/src/win32.cpp b/src/win32.cpp index 82ad87e4cb..2b08579017 100644 --- a/src/win32.cpp +++ b/src/win32.cpp @@ -485,14 +485,15 @@ static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep) 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 ); }