Small fixup

This commit is contained in:
fearlessTobi 2018-08-19 16:46:10 +02:00
parent 4cd737abae
commit b19e88a9f4
1 changed files with 8 additions and 8 deletions

View File

@ -618,10 +618,12 @@ bool GMainWindow::LoadROM(const QString& filename) {
render_window->InitRenderTarget();
render_window->MakeCurrent();
const char* below_gl33_title = "OpenGL 3.3 Unsupported";
const char* below_gl33_message = "Your GPU may not support OpenGL 3.3, or you do not "
"have the latest graphics driver.";
if (!gladLoadGL()) {
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."));
QMessageBox::critical(this, tr(below_gl33_title), tr(below_gl33_message));
return false;
}
@ -685,16 +687,14 @@ bool GMainWindow::LoadROM(const QString& filename) {
case Core::System::ResultStatus::ErrorVideoCore_ErrorGenericDrivers:
QMessageBox::critical(
this, tr("Video Core Error!"),
tr("An error occured in the video core. You are running default Windows drivers "
this, tr("Video Core Error"),
tr("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("OpenGL 3.3 Unsupported"),
tr("Your GPU may not support OpenGL 3.3, or you do not "
"have the latest graphics driver."));
QMessageBox::critical(this, tr(below_gl33_title), tr(below_gl33_message));
break;
default: