Improve warning (#3770)

* Improve warning

It's more clear now that this is non-fatal.

* Update main.cpp
This commit is contained in:
QwertyChouskie 2019-02-24 18:25:15 -08:00 committed by auriamg
parent eaddd9c1a3
commit 1892b827d9

View File

@ -2124,13 +2124,12 @@ int main(int argc, char *argv[] )
#else #else
irr::core::stringw version = "OpenGL 3.3"; irr::core::stringw version = "OpenGL 3.3";
#endif #endif
MessageDialog *dialog = MessageDialog *dialog = new MessageDialog(_(
new MessageDialog(_("Your OpenGL version appears to be " "Your graphics driver appears to be very old. Please "
"too old. Please verify if an " "check if an update is available. SuperTuxKart "
"update for your video driver is " "recommends a driver supporting %s or better. The game "
"available. SuperTuxKart requires " "will likely still run, but in a reduced-graphics mode.",
"%s or better.", version), version), /*from queue*/ true);
/*from queue*/ true);
GUIEngine::DialogQueue::get()->pushDialog(dialog); GUIEngine::DialogQueue::get()->pushDialog(dialog);
} }
#endif #endif