Browse Source

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.
Andrea Pascal 9 năm trước cách đây
mục cha
commit
f55b7aefd9
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      src/citra_qt/main.cpp

+ 1 - 1
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;
     }