From 4cd737abaeb73bd58272f1b63794fccb6a423d8e Mon Sep 17 00:00:00 2001 From: fearlessTobi Date: Thu, 26 Jul 2018 13:32:31 +0200 Subject: [PATCH] Address zhaowenlans feedback --- src/citra_qt/main.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 737a00d59..142a12948 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -685,13 +685,14 @@ bool GMainWindow::LoadROM(const QString& filename) { case Core::System::ResultStatus::ErrorVideoCore_ErrorGenericDrivers: QMessageBox::critical( - this, tr("An error occured in the video core."), - tr("You are running default Windows drivers for your GPU. You need to install the " + this, tr("Video Core Error!"), + tr("An error occured in the video core. You are running default Windows drivers " + "for your GPU. You need to install the " "proper drivers for your graphics card from the manufacturer's website.")); break; case Core::System::ResultStatus::ErrorVideoCore_ErrorBelowGL33: - QMessageBox::critical(this, tr("Error while initializing OpenGL 3.3 Core!"), + QMessageBox::critical(this, tr("OpenGL 3.3 Unsupported"), tr("Your GPU may not support OpenGL 3.3, or you do not " "have the latest graphics driver.")); break;