diff options
| author | 2017-08-04 23:11:27 -0400 | |
|---|---|---|
| committer | 2017-08-04 23:11:27 -0400 | |
| commit | f55b7aefd998553648c6d7692d8dcf94057ca7ca (patch) | |
| tree | 34efb65fbbd195240cb30049b0775fdc855f4673 | |
| parent | Merge pull request #2855 from bunnei/telemetry-additional-fields (diff) | |
| download | yuzu-f55b7aefd998553648c6d7692d8dcf94057ca7ca.tar.gz yuzu-f55b7aefd998553648c6d7692d8dcf94057ca7ca.tar.xz yuzu-f55b7aefd998553648c6d7692d8dcf94057ca7ca.zip | |
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.
Diffstat (limited to '')
| -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) { | |||
| 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 | } |