mirror of https://github.com/OpenTTD/OpenTTD
(svn r7467) -Cleanup: [win32] Disable the submit-savegame-on-crash code as we (webserver)
doesn't do anything with it and the button has been disabled for ages.release/0.5
parent
2158acb1ae
commit
ff5f9349c8
8
win32.c
8
win32.c
|
@ -223,6 +223,9 @@ static bool EmergencySave(void)
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Disable the crash-save submit code as it's not used */
|
||||||
|
#if 0
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
HINTERNET (WINAPI *InternetOpen)(LPCTSTR,DWORD, LPCTSTR, LPCTSTR, DWORD);
|
HINTERNET (WINAPI *InternetOpen)(LPCTSTR,DWORD, LPCTSTR, LPCTSTR, DWORD);
|
||||||
HINTERNET (WINAPI *InternetConnect)(HINTERNET, LPCTSTR, INTERNET_PORT, LPCTSTR, LPCTSTR, DWORD, DWORD, DWORD);
|
HINTERNET (WINAPI *InternetConnect)(HINTERNET, LPCTSTR, INTERNET_PORT, LPCTSTR, LPCTSTR, DWORD, DWORD, DWORD);
|
||||||
|
@ -321,6 +324,8 @@ error1:
|
||||||
CloseHandle(h);
|
CloseHandle(h);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#endif /* Disabled crash-submit procedures */
|
||||||
|
|
||||||
static const TCHAR * const _expand_texts[] = {_T("S&how report >>"), _T("&Hide report <<") };
|
static const TCHAR * const _expand_texts[] = {_T("S&how report >>"), _T("&Hide report <<") };
|
||||||
|
|
||||||
static void SetWndSize(HWND wnd, int mode)
|
static void SetWndSize(HWND wnd, int mode)
|
||||||
|
@ -381,6 +386,8 @@ static INT_PTR CALLBACK CrashDialogFunc(HWND wnd,UINT msg,WPARAM wParam,LPARAM l
|
||||||
MessageBox(wnd, _T("Save failed"), _T("Save failed"), MB_ICONINFORMATION);
|
MessageBox(wnd, _T("Save failed"), _T("Save failed"), MB_ICONINFORMATION);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
/* Disable the crash-save submit code as it's not used */
|
||||||
|
#if 0
|
||||||
case 14: { /* Submit crash report */
|
case 14: { /* Submit crash report */
|
||||||
const TCHAR *s;
|
const TCHAR *s;
|
||||||
|
|
||||||
|
@ -405,6 +412,7 @@ static INT_PTR CALLBACK CrashDialogFunc(HWND wnd,UINT msg,WPARAM wParam,LPARAM l
|
||||||
SetCursor(LoadCursor(NULL, IDC_ARROW));
|
SetCursor(LoadCursor(NULL, IDC_ARROW));
|
||||||
MessageBox(wnd, _T("Crash report submitted. Thank you."), _T("Crash Report"), MB_ICONINFORMATION);
|
MessageBox(wnd, _T("Crash report submitted. Thank you."), _T("Crash Report"), MB_ICONINFORMATION);
|
||||||
} break;
|
} break;
|
||||||
|
#endif /* Disabled crash-submit procedures */
|
||||||
case 15: /* Expand window to show crash-message */
|
case 15: /* Expand window to show crash-message */
|
||||||
_expanded ^= 1;
|
_expanded ^= 1;
|
||||||
SetWndSize(wnd, _expanded);
|
SetWndSize(wnd, _expanded);
|
||||||
|
|
Loading…
Reference in New Issue