summaryrefslogtreecommitdiff
path: root/Source/Core/WinUpdater/WinUI.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/WinUpdater/WinUI.cpp')
-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)
{