src/win32.c
branchcustombridgeheads
changeset 5648 1608018c5ff2
parent 5643 3778051e8095
equal deleted inserted replaced
5647:cbde85c8c878 5648:1608018c5ff2
   205 	return output;
   205 	return output;
   206 }
   206 }
   207 
   207 
   208 static const TCHAR _crash_desc[] =
   208 static const TCHAR _crash_desc[] =
   209 	_T("A serious fault condition occured in the game. The game will shut down.\n")
   209 	_T("A serious fault condition occured in the game. The game will shut down.\n")
   210 	_T("Press \"Submit report\" to send crash information to the developers. ")
   210 	_T("Please send the crash information and the crash.dmp file (if any) to the developers.\n")
   211 	_T("This will greatly help debugging. ")
   211 	_T("This will greatly help debugging. The correct place to do this is http://bugs.openttd.org. ")
   212 	_T("The information contained in the report is displayed below.\n")
   212 	_T("The information contained in the report is displayed below.\n")
   213 	_T("Press \"Emergency save\" to attempt saving the game.");
   213 	_T("Press \"Emergency save\" to attempt saving the game.");
   214 
   214 
   215 static const TCHAR _save_succeeded[] =
   215 static const TCHAR _save_succeeded[] =
   216 	_T("Emergency save succeeded.\n")
   216 	_T("Emergency save succeeded.\n")
   834 }
   834 }
   835 
   835 
   836 void ShowInfo(const char *str)
   836 void ShowInfo(const char *str)
   837 {
   837 {
   838 	if (_has_console) {
   838 	if (_has_console) {
   839 		puts(str);
   839 		fprintf(stderr, str);
   840 	} else {
   840 	} else {
   841 		bool old;
   841 		bool old;
   842 
   842 
   843 		ReleaseCapture();
   843 		ReleaseCapture();
   844 		_left_button_clicked =_left_button_down = false;
   844 		_left_button_clicked =_left_button_down = false;