Browse Source

Mention that rebooting is required after updating graphics driver on Linux

Hugo Locurcio 4 years ago
parent
commit
7486fa9b16
1 changed files with 2 additions and 1 deletions
  1. 2 1
      platform/linuxbsd/display_server_x11.cpp

+ 2 - 1
platform/linuxbsd/display_server_x11.cpp

@@ -3614,7 +3614,8 @@ DisplayServer *DisplayServerX11::create_func(const String &p_rendering_driver, W
 	DisplayServer *ds = memnew(DisplayServerX11(p_rendering_driver, p_mode, p_vsync_mode, p_flags, p_resolution, r_error));
 	DisplayServer *ds = memnew(DisplayServerX11(p_rendering_driver, p_mode, p_vsync_mode, p_flags, p_resolution, r_error));
 	if (r_error != OK) {
 	if (r_error != OK) {
 		OS::get_singleton()->alert("Your video card driver does not support any of the supported Vulkan versions.\n"
 		OS::get_singleton()->alert("Your video card driver does not support any of the supported Vulkan versions.\n"
-								   "Please update your drivers or if you have a very old or integrated GPU upgrade it.",
+								   "Please update your drivers or if you have a very old or integrated GPU, upgrade it.\n"
+								   "If you have updated your graphics drivers recently, try rebooting.",
 				"Unable to initialize Video driver");
 				"Unable to initialize Video driver");
 	}
 	}
 	return ds;
 	return ds;