From 237b9754c64691439e06ee0659a5bb8e28e2366c Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Mon, 7 Mar 2022 19:46:38 +1000 Subject: [PATCH] Qt: Log graphics driver info on startup --- pcsx2-qt/EmuThread.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pcsx2-qt/EmuThread.cpp b/pcsx2-qt/EmuThread.cpp index da9d8f57c5..96a2aa1e60 100644 --- a/pcsx2-qt/EmuThread.cpp +++ b/pcsx2-qt/EmuThread.cpp @@ -632,6 +632,9 @@ HostDisplay* EmuThread::acquireHostDisplay(HostDisplay::RenderAPI api) g_gs_window_info = s_host_display->GetWindowInfo(); + Console.WriteLn(Color_StrongGreen, "%s Graphics Driver Info:", HostDisplay::RenderAPIToString(s_host_display->GetRenderAPI())); + Console.Indent().WriteLn(s_host_display->GetDriverInfo()); + return s_host_display.get(); }