From a4c5753e83ac388c7fa15251e63ab3e39e374bb5 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Wed, 2 Apr 2025 15:53:32 +0100 Subject: [PATCH] OSD: Append debug device so Kam doesn't forget --- pcsx2/ImGui/ImGuiOverlays.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/ImGui/ImGuiOverlays.cpp b/pcsx2/ImGui/ImGuiOverlays.cpp index 692e0f027c..d4ed151412 100644 --- a/pcsx2/ImGui/ImGuiOverlays.cpp +++ b/pcsx2/ImGui/ImGuiOverlays.cpp @@ -230,7 +230,7 @@ __ri void ImGuiManager::DrawPerformanceOverlay(float& position_y, float scale, f // GPU text.clear(); - text.append_format("GPU: {}", g_gs_device->GetName()); + text.append_format("GPU: {}{}", g_gs_device->GetName(), GSConfig.UseDebugDevice ? " (Debug)" : ""); DRAW_LINE(fixed_font, text.c_str(), IM_COL32(255, 255, 255, 255)); }