OSD: Append debug device so Kam doesn't forget

This commit is contained in:
JordanTheToaster 2025-04-02 15:53:32 +01:00 committed by lightningterror
parent ee00213961
commit 24b1be1dd2
1 changed files with 1 additions and 1 deletions

View File

@ -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));
}