PerformanceMetrics: Add padding below graph

Add vertical padding between the performance graph (when it's enabled)
and the FPS/VPS/Speed overlays.
This commit is contained in:
Dentomologist 2026-02-05 12:50:17 -08:00
parent c792454f79
commit 4b5b2ebd2f

View File

@ -211,7 +211,7 @@ void PerformanceMetrics::DrawImGuiStats(const float backbuffer_scale)
2000.0};
clamp_window_position();
window_y += ImGui::GetWindowHeight();
window_y += ImGui::GetWindowHeight() + window_padding;
const DT vblank_time = m_vps_counter.GetDtAvg() + 2 * m_vps_counter.GetDtStd();
const DT frame_time = m_fps_counter.GetDtAvg() + 2 * m_fps_counter.GetDtStd();