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/TextureCacheBase.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Source/Core/VideoCommon/TextureCacheBase.h') diff --git a/Source/Core/VideoCommon/TextureCacheBase.h b/Source/Core/VideoCommon/TextureCacheBase.h index ee27c3e80b..9a95400679 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.h +++ b/Source/Core/VideoCommon/TextureCacheBase.h @@ -463,8 +463,8 @@ private: void OnFrameEnd(); - Common::EventHook m_frame_event = GetVideoEvents().after_frame_event.Register( - [this](Core::System&) { OnFrameEnd(); }, "TextureCache"); + Common::EventHook m_frame_event = + GetVideoEvents().after_frame_event.Register([this](Core::System&) { OnFrameEnd(); }); VideoCommon::TextureUtils::TextureDumper m_texture_dumper; }; -- cgit v1.2.3