summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PerformanceMetrics.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2026-07-31 13:49:48 +1200
committerGitHub <noreply@github.com>2026-07-31 13:49:48 +1200
commit3bd410c4c5bf9f66b013d63f4421364e95bd9722 (patch)
tree5290c9f624c4c460a4148925c007087152b50e20 /Source/Core/VideoCommon/PerformanceMetrics.cpp
parente463c64b7ad37fbb33c0242052d5f4245815ec6e (diff)
parent61e97c9a099ed00261e299ddc43bc22c1479e220 (diff)
Merge pull request #14775 from tygyh/Replace-zero-constants-with-`nullptr`
Replace zero constants with `nullptr`
Diffstat (limited to 'Source/Core/VideoCommon/PerformanceMetrics.cpp')
-rw-r--r--Source/Core/VideoCommon/PerformanceMetrics.cpp2
1 files changed, 1 insertions, 1 deletions
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 |