From 6d3fc6b38ab9458523cf36745c1e452df1f1f231 Mon Sep 17 00:00:00 2001 From: drfrag Date: Mon, 6 Apr 2020 11:21:54 +0200 Subject: [PATCH] - Clarify error message. --- src/win32/win32gliface.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/win32/win32gliface.cpp b/src/win32/win32gliface.cpp index 060e8e18a..ec6dc72ee 100644 --- a/src/win32/win32gliface.cpp +++ b/src/win32/win32gliface.cpp @@ -869,8 +869,8 @@ bool Win32GLVideo::SetupPixelFormat(int multisample) if (pfd.dwFlags & PFD_GENERIC_FORMAT) { vid_renderer = 0; - I_Error("R_OPENGL: OpenGL driver not accelerated! Falling back to software renderer.\n" - "For Intel cards run " GAMENAME " in Windows 8 compatibility mode or use the wtfi tool.\n"); + I_Error("R_OPENGL: OpenGL driver not accelerated! Falling back to software renderer. Get a driver from your manufacturer.\n" + "For some Intel cards run " GAMENAME " in Windows 8 compatibility mode or use the wtfi tool.\n"); return false; } }