summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorShawn Hoffman <godisgovernment@gmail.com>2023-03-11 13:22:39 -0800
committerShawn Hoffman <godisgovernment@gmail.com>2023-03-11 13:25:38 -0800
commitab3da5e4ce2fa7755c308f5d44dad4ebd7285c44 (patch)
tree39e3d9d53eda2da66e1a1c4bcb83ba837d5a8872 /Source/Core
parent804b94ee9e73339f94a8f021ac444a1cdda01978 (diff)
winupdater: improve wording of UI::Error
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/WinUpdater/WinUI.cpp10
1 files changed, 6 insertions, 4 deletions
diff --git a/Source/Core/WinUpdater/WinUI.cpp b/Source/Core/WinUpdater/WinUI.cpp
index 1671f43457..07f2751dec 100644
--- a/Source/Core/WinUpdater/WinUI.cpp
+++ b/Source/Core/WinUpdater/WinUI.cpp
@@ -179,11 +179,13 @@ void ResetCurrentProgress()
void Error(const std::string& text)
{
- auto wide_text = UTF8ToWString(text);
+ auto message = L"A fatal error occurred and the updater cannot continue:\n " +
+ UTF8ToWString(text) + L"\n" +
+ L"If the issue persists, please manually download the latest version from "
+ L"dolphin-emu.org/download and extract it overtop your existing installation.\n" +
+ L"Also consider filing a bug at bugs.dolphin-emu.org/projects/emulator";
- MessageBox(nullptr,
- (L"A fatal error occured and the updater cannot continue:\n " + wide_text).c_str(),
- L"Error", MB_ICONERROR);
+ MessageBox(nullptr, message.c_str(), L"Error", MB_ICONERROR);
if (taskbar_list)
{