diff --git a/pcsx2/ImGui/ImGuiOverlays.cpp b/pcsx2/ImGui/ImGuiOverlays.cpp index c997fcec46db31..aa394e529db560 100644 --- a/pcsx2/ImGui/ImGuiOverlays.cpp +++ b/pcsx2/ImGui/ImGuiOverlays.cpp @@ -213,13 +213,20 @@ __ri void ImGuiManager::DrawPerformanceOverlay(float& position_y, float scale, f if (GSConfig.OsdShowHardwareInfo) { + // CPU text.clear(); text.append_format("CPU: {} ({}C/{}T)", cpuinfo_get_package(0)->name, cpuinfo_get_cores_count(), cpuinfo_get_processors_count()); DRAW_LINE(fixed_font, text.c_str(), IM_COL32(255, 255, 255, 255)); - } + + // GPU + text.clear(); + text.append_format("GPU: {}", g_gs_device->GetName()); + DRAW_LINE(fixed_font, text.c_str(), IM_COL32(255, 255, 255, 255)); + } + if (GSConfig.OsdShowCPU) {