From 1e905be4754013e8b5002f7e9217bc5a1afe9387 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 15 Mar 2009 14:28:46 +0000 Subject: (svn r15720) -Change: put a bit more information into the crash log --- src/win32.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/win32.cpp b/src/win32.cpp index 82ad87e4c..2b0857901 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 ); } -- cgit v1.2.3-54-g00ecf