Improve warning (#3770)
* Improve warning It's more clear now that this is non-fatal. * Update main.cpp
This commit is contained in:
parent
eaddd9c1a3
commit
1892b827d9
13
src/main.cpp
13
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
|
||||
|
Loading…
Reference in New Issue
Block a user