From da6c65bf3b83fa1cfe5da5dc5e43ec49b2786b52 Mon Sep 17 00:00:00 2001 From: Jordan Woyak Date: Thu, 6 Nov 2025 22:08:27 -0600 Subject: Common: Remove the string parameters from the HookableEvent interface. --- Source/Core/VideoCommon/AbstractGfx.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/AbstractGfx.cpp') diff --git a/Source/Core/VideoCommon/AbstractGfx.cpp b/Source/Core/VideoCommon/AbstractGfx.cpp index ca6ad881b1..0e7e05e0f0 100644 --- a/Source/Core/VideoCommon/AbstractGfx.cpp +++ b/Source/Core/VideoCommon/AbstractGfx.cpp @@ -18,8 +18,8 @@ std::unique_ptr g_gfx; AbstractGfx::AbstractGfx() { - m_config_changed = GetVideoEvents().config_changed_event.Register( - [this](u32 bits) { OnConfigChanged(bits); }, "AbstractGfx"); + m_config_changed = + GetVideoEvents().config_changed_event.Register([this](u32 bits) { OnConfigChanged(bits); }); } bool AbstractGfx::IsHeadless() const -- cgit v1.2.3