diff options
| author | 2021-12-06 21:17:02 -0300 | |
|---|---|---|
| committer | 2021-12-06 20:35:07 -0500 | |
| commit | 60bdedc7dd95c06a9277e580007a888453f8735a (patch) | |
| tree | db9d59bc58353c62824ec2d8e347c72bf1ff6b61 /src | |
| parent | Merge pull request #7529 from german77/sdl2.0.18 (diff) | |
| download | yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.gz yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.xz yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.zip | |
main: Update video core popup
Old version had formatting issues, and I want to provide an answer to the most common reason this pops up in the first place, outdated drivers.
Diffstat (limited to '')
| -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 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); |