diff options
author | bunnei <bunneidev@gmail.com> | 2021-12-15 22:32:27 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 22:32:27 -0800 |
commit | e242f169864c1e6eae067bb1866b18bde6aeb3ac (patch) | |
tree | 56c2f5dcb53228f2cc1297dd727d6d96eedcda7a | |
parent | 7cf74abbf5fa5aca712dfaad0ed5e07a797dcbbb (diff) | |
parent | 333ccf23f8aedc6900131f6aa2720d61a01c73fb (diff) |
Merge pull request #7532 from goldenx86/patch-3
Update video core popup
-rw-r--r-- | src/yuzu/main.cpp | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index df736513b..b7bb43348 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -1304,16 +1304,13 @@ bool GMainWindow::LoadROM(const QString& filename, u64 program_id, std::size_t p case Core::SystemResultStatus::ErrorVideoCore: QMessageBox::critical( this, tr("An error occurred initializing the video core."), - tr("yuzu has encountered an error while running the video core, please see the " - "log for more details." + tr("yuzu has encountered an error while running the video core. " + "This is usually caused by outdated GPU drivers, including integrated ones. " + "Please see the log for more details. " "For more information on accessing the log, please see the following page: " - "<a href='https://community.citra-emu.org/t/how-to-upload-the-log-file/296'>How " - "to " - "Upload the Log File</a>." - "Ensure that you have the latest graphics drivers for your GPU.")); - + "<a href='https://yuzu-emu.org/help/reference/log-files/'>" + "How to Upload the Log File</a>. ")); break; - default: if (result > Core::SystemResultStatus::ErrorLoader) { const u16 loader_id = static_cast<u16>(Core::SystemResultStatus::ErrorLoader); |