From fa3675d32872a01cb2f8173772c37c550c60bfe3 Mon Sep 17 00:00:00 2001 From: Dennis Felsing Date: Sat, 25 Feb 2023 10:36:23 +0100 Subject: [PATCH] Improve warning text in backend_sdl --- src/engine/client/backend_sdl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/client/backend_sdl.cpp b/src/engine/client/backend_sdl.cpp index 2f6bc4d3a..4559e4aa8 100644 --- a/src/engine/client/backend_sdl.cpp +++ b/src/engine/client/backend_sdl.cpp @@ -312,7 +312,7 @@ void CCommandProcessor_SDL_GL::HandleWarning() Warn.m_vWarnings.emplace_back(Localizable("Could not initialize the given graphics backend, reverting to the default backend now.", "Graphics error")); break; case GFX_WARNING_TYPE_INIT_FAILED_MISSING_INTEGRATED_GPU_DRIVER: - Warn.m_vWarnings.emplace_back(Localizable("Could not initialize the given graphics backend, this is probably caused because you didn't install the driver of the integrated graphics card.", "Graphics error")); + Warn.m_vWarnings.emplace_back(Localizable("Could not initialize the given graphics backend, this is probably because you didn't install the driver of the integrated graphics card.", "Graphics error")); break; case GFX_WARNING_MISSING_EXTENSION: // ignore this warning for now