diff options
author | James Rowe <jroweboy@gmail.com> | 2017-08-05 05:14:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-08-05 05:14:49 +0200 |
commit | 343bbfdabc33630b3913aab39a2b30947dfbfbc2 (patch) | |
tree | 34efb65fbbd195240cb30049b0775fdc855f4673 /src | |
parent | Merge pull request #2855 from bunnei/telemetry-additional-fields (diff) | |
parent | Quickfix typo in OpenGL 3.3 error message (diff) | |
download | yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.gz yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.bz2 yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.lz yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.xz yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.tar.zst yuzu-343bbfdabc33630b3913aab39a2b30947dfbfbc2.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/citra_qt/main.cpp | 2 |
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) { 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; } |