changeset 11370:fe10d122f7f1 draft

(svn r15720) -Change: put a bit more information into the crash log
author rubidium <rubidium@openttd.org>
date Sun, 15 Mar 2009 14:28:46 +0000
parents 41fcb66a1256
children f33b02a881df
files src/win32.cpp
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- 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
 		);
 	}