From 7d960e28b41c9d87a292c6f0716e3f9ea8df26a2 Mon Sep 17 00:00:00 2001 From: Jonathan G Rennison Date: Thu, 22 Jun 2017 19:41:01 +0100 Subject: [PATCH] Update crash dialog message to point to forum thread and github Instead of bugs.openttd.org --- src/os/macosx/crashlog_osx.cpp | 5 +++-- src/os/windows/crashlog_win.cpp | 5 +++-- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/os/macosx/crashlog_osx.cpp b/src/os/macosx/crashlog_osx.cpp index c3f6ea5fef..1f8922b079 100644 --- a/src/os/macosx/crashlog_osx.cpp +++ b/src/os/macosx/crashlog_osx.cpp @@ -202,8 +202,9 @@ public: char message[1024]; seprintf(message, lastof(message), - "Please send the generated crash information and the last (auto)save to the developers. " - "This will greatly help debugging. The correct place to do this is http://bugs.openttd.org.\n\n" + "Please send the generated crash information and the last (auto)save to the patchpack developer. " + "This will greatly help debugging. The correct place to do this is https://www.tt-forums.net/viewtopic.php?f=33&t=73469" + " or https://github.com/JGRennison/OpenTTD-patches\n\n" "Generated file(s):\n%s\n%s\n%s", this->filename_log, this->filename_save, this->filename_screenshot); diff --git a/src/os/windows/crashlog_win.cpp b/src/os/windows/crashlog_win.cpp index 5552b30119..8224ad00fc 100644 --- a/src/os/windows/crashlog_win.cpp +++ b/src/os/windows/crashlog_win.cpp @@ -616,8 +616,9 @@ static bool _expanded; static const TCHAR _crash_desc[] = _T("A serious fault condition occurred in the game. The game will shut down.\n") - _T("Please send the crash information and the crash.dmp file (if any) to the developers.\n") - _T("This will greatly help debugging. The correct place to do this is http://bugs.openttd.org. ") + _T("Please send the crash information and the crash.dmp file (if any) to the patchpack developer.\n") + _T("This will greatly help debugging. The correct place to do this is https://www.tt-forums.net/viewtopic.php?f=33&t=73469") + _T(" or https://github.com/JGRennison/OpenTTD-patches\n") _T("The information contained in the report is displayed below.\n") _T("Press \"Emergency save\" to attempt saving the game. Generated file(s):\n") _T("%s");