We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 9d7c5a2 + 78df244 commit d224a87Copy full SHA for d224a87
code/graphics/opengl/gropengl.cpp
@@ -1462,7 +1462,10 @@ bool gr_opengl_init(std::unique_ptr<os::GraphicsOperations>&& graphicsOps)
1462
graphic_operations = std::move(graphicsOps);
1463
1464
if ( opengl_init_display_device() ) {
1465
- Error(LOCATION, "Unable to initialize display device!\n");
+ Error(LOCATION, "Unable to initialize display device!\n"
1466
+ "This most likely means that your graphics drivers do not support the minimum required OpenGL version which is %d.%d.\n",
1467
+ (MIN_REQUIRED_GL_VERSION / 10),
1468
+ (MIN_REQUIRED_GL_VERSION % 10));
1469
}
1470
1471
// Initialize function pointers
0 commit comments