From 1892b827d90d81f04431fbe355fa17bf5e4996a0 Mon Sep 17 00:00:00 2001 From: QwertyChouskie Date: Sun, 24 Feb 2019 18:25:15 -0800 Subject: [PATCH] Improve warning (#3770) * Improve warning It's more clear now that this is non-fatal. * Update main.cpp --- src/main.cpp | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index d51feba53..cb8905e64 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -2124,13 +2124,12 @@ int main(int argc, char *argv[] ) #else irr::core::stringw version = "OpenGL 3.3"; #endif - MessageDialog *dialog = - new MessageDialog(_("Your OpenGL version appears to be " - "too old. Please verify if an " - "update for your video driver is " - "available. SuperTuxKart requires " - "%s or better.", version), - /*from queue*/ true); + MessageDialog *dialog = new MessageDialog(_( + "Your graphics driver appears to be very old. Please " + "check if an update is available. SuperTuxKart " + "recommends a driver supporting %s or better. The game " + "will likely still run, but in a reduced-graphics mode.", + version), /*from queue*/ true); GUIEngine::DialogQueue::get()->pushDialog(dialog); } #endif