From 61e97c9a099ed00261e299ddc43bc22c1479e220 Mon Sep 17 00:00:00 2001 From: "Dr. Dystopia" Date: Wed, 29 Jul 2026 18:15:38 +0200 Subject: Replace zero constants with `nullptr` --- Source/Core/VideoCommon/PerformanceMetrics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Source/Core/VideoCommon/PerformanceMetrics.cpp') diff --git a/Source/Core/VideoCommon/PerformanceMetrics.cpp b/Source/Core/VideoCommon/PerformanceMetrics.cpp index 98efa64108..7ea96bd183 100644 --- a/Source/Core/VideoCommon/PerformanceMetrics.cpp +++ b/Source/Core/VideoCommon/PerformanceMetrics.cpp @@ -191,7 +191,7 @@ void PerformanceMetrics::DrawImGuiStats(const float backbuffer_scale) if (g_ActiveConfig.bShowGraphs) { // A font size of 13 is small enough to keep the tick numbers from overlapping too much. - ImGui::PushFont(NULL, 13.0f); + ImGui::PushFont(nullptr, 13.0f); ImGui::PushStyleColor(ImGuiCol_ResizeGrip, 0); const auto graph_flags = ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoSavedSettings | ImGuiWindowFlags_NoScrollbar | ImGuiWindowFlags_NoNav | movable_flag | -- cgit v1.2.3