summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/yuzu/main.cpp13
1 files changed, 5 insertions, 8 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp
index 5a9dec8f3..691fa71e3 100644
--- a/src/yuzu/main.cpp
+++ b/src/yuzu/main.cpp
@@ -1301,16 +1301,13 @@ bool GMainWindow::LoadROM(const QString& filename, u64 program_id, std::size_t p
1301 case Core::SystemResultStatus::ErrorVideoCore: 1301 case Core::SystemResultStatus::ErrorVideoCore:
1302 QMessageBox::critical( 1302 QMessageBox::critical(
1303 this, tr("An error occurred initializing the video core."), 1303 this, tr("An error occurred initializing the video core."),
1304 tr("yuzu has encountered an error while running the video core, please see the " 1304 tr("yuzu has encountered an error while running the video core, "
1305 "log for more details." 1305 "this is usually caused by outdated GPU drivers, including integrated ones. "
1306 "Please see the log for more details. "
1306 "For more information on accessing the log, please see the following page: " 1307 "For more information on accessing the log, please see the following page: "
1307 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How " 1308 "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>"
1308 "to " 1309 "How to Upload the Log File</a>. "));
1309 "Upload the Log File</a>."
1310 "Ensure that you have the latest graphics drivers for your GPU."));
1311
1312 break; 1310 break;
1313
1314 default: 1311 default:
1315 if (result > Core::SystemResultStatus::ErrorLoader) { 1312 if (result > Core::SystemResultStatus::ErrorLoader) {
1316 const u16 loader_id = static_cast<u16>(Core::SystemResultStatus::ErrorLoader); 1313 const u16 loader_id = static_cast<u16>(Core::SystemResultStatus::ErrorLoader);