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. --- .../Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp') diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp index 6a523c61a2..3caaa999fd 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/GraphicsModManager.cpp @@ -95,8 +95,8 @@ bool GraphicsModManager::Initialize() g_ActiveConfig.graphics_mod_config->SetChangeCount(old_game_mod_changes); g_graphics_mod_manager->Load(*g_ActiveConfig.graphics_mod_config); - m_end_of_frame_event = GetVideoEvents().after_frame_event.Register( - [this](Core::System&) { EndOfFrame(); }, "ModManager"); + m_end_of_frame_event = + GetVideoEvents().after_frame_event.Register([this](Core::System&) { EndOfFrame(); }); } return true; -- cgit v1.2.3