summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar James Rowe2017-08-04 21:14:49 -0600
committerGravatar GitHub2017-08-04 21:14:49 -0600
commit343bbfdabc33630b3913aab39a2b30947dfbfbc2 (patch)
tree34efb65fbbd195240cb30049b0775fdc855f4673 /src
parentMerge pull request #2855 from bunnei/telemetry-additional-fields (diff)
parentQuickfix typo in OpenGL 3.3 error message (diff)
downloadyuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.gz
yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.xz
yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.zip
Merge pull request #2860 from anodium/patch-1
Quickfix typo in OpenGL 3.3 error message
Diffstat (limited to 'src')
-rw-r--r--src/citra_qt/main.cpp2
1 files changed, 1 insertions, 1 deletions
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) {
311 311
312 if (!gladLoadGL()) { 312 if (!gladLoadGL()) {
313 QMessageBox::critical(this, tr("Error while initializing OpenGL 3.3 Core!"), 313 QMessageBox::critical(this, tr("Error while initializing OpenGL 3.3 Core!"),
314 tr("Your GPU may not support OpenGL 3.3, or you do not" 314 tr("Your GPU may not support OpenGL 3.3, or you do not "
315 "have the latest graphics driver.")); 315 "have the latest graphics driver."));
316 return false; 316 return false;
317 } 317 }