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
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