From f55b7aefd998553648c6d7692d8dcf94057ca7ca Mon Sep 17 00:00:00 2001 From: Andrea Pascal Date: Fri, 4 Aug 2017 23:11:27 -0400 Subject: [PATCH] Quickfix typo in OpenGL 3.3 error message User pointed out on the Discord server that "nothave" is erroneously concatenated. Added a space to prevent it. --- src/citra_qt/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/citra_qt/main.cpp b/src/citra_qt/main.cpp index 02bfdca3d..c1ae0ccc8 100644 --- a/src/citra_qt/main.cpp +++ b/src/citra_qt/main.cpp @@ -311,7 +311,7 @@ bool GMainWindow::LoadROM(const QString& filename) { if (!gladLoadGL()) { QMessageBox::critical(this, tr("Error while initializing OpenGL 3.3 Core!"), - tr("Your GPU may not support OpenGL 3.3, or you do not" + tr("Your GPU may not support OpenGL 3.3, or you do not " "have the latest graphics driver.")); return false; }