summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatías Locatti <42481638+goldenx86@users.noreply.github.com>2021-12-07 01:17:02 +0100
committerMorph <39850852+Morph1984@users.noreply.github.com>2021-12-07 02:35:07 +0100
commit60bdedc7dd95c06a9277e580007a888453f8735a (patch)
treedb9d59bc58353c62824ec2d8e347c72bf1ff6b61
parentMerge pull request #7529 from german77/sdl2.0.18 (diff)
downloadyuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar
yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.gz
yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.bz2
yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.lz
yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.xz
yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.tar.zst
yuzu-60bdedc7dd95c06a9277e580007a888453f8735a.zip
-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
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://community.citra-emu.org/t/how-to-upload-the-log-file/296'>"
+ "How to Upload the Log File</a>. "));
break;
-
default:
if (result > Core::SystemResultStatus::ErrorLoader) {
const u16 loader_id = static_cast<u16>(Core::SystemResultStatus::ErrorLoader);