(svn r3872) - [win32] Show the revision in crash.txt and enable the button to show the crash text in the crash-window
authorDarkvater
Tue, 14 Mar 2006 21:31:51 +0000
changeset 3204 2f2e12688e97
parent 3203 9e60868d2ec7
child 3205 cfe0785b5171
(svn r3872) - [win32] Show the revision in crash.txt and enable the button to show the crash text in the crash-window
ottdres.rc
win32.c
--- a/ottdres.rc	Tue Mar 14 21:29:38 2006 +0000
+++ b/ottdres.rc	Tue Mar 14 21:31:51 2006 +0000
@@ -50,7 +50,7 @@
     PUSHBUTTON      "&Close",12,7,49,50,14
     PUSHBUTTON      "&Submit report",14,81,49,68,14,WS_DISABLED
     PUSHBUTTON      "&Emergency save",13,155,49,68,14
-    PUSHBUTTON      "",15,243,49,55,14,WS_DISABLED
+    PUSHBUTTON      "",15,243,49,55,14
     EDITTEXT        11,7,70,291,118,ES_MULTILINE | ES_READONLY | WS_VSCROLL |
                     WS_HSCROLL | NOT WS_TABSTOP
     LTEXT           "",10,36,7,262,34
--- a/win32.c	Tue Mar 14 21:29:38 2006 +0000
+++ b/win32.c	Tue Mar 14 21:31:51 2006 +0000
@@ -427,6 +427,7 @@
 
 static LONG WINAPI ExceptionHandler(EXCEPTION_POINTERS *ep)
 {
+	extern const char _openttd_revision[];
 	char *output;
 	static bool had_exception;
 
@@ -451,7 +452,7 @@
 			time.wHour,
 			time.wMinute,
 			time.wSecond,
-			"???"
+			_openttd_revision
 		);
 	}