summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/TextureCacheBase.h
diff options
context:
space:
mode:
authorJordan Woyak <jordan.woyak@gmail.com>2025-11-06 22:08:27 -0600
committerJordan Woyak <jordan.woyak@gmail.com>2025-11-06 22:34:40 -0600
commitda6c65bf3b83fa1cfe5da5dc5e43ec49b2786b52 (patch)
tree1538fff3c783052707c8513738ba5cdc636ece48 /Source/Core/VideoCommon/TextureCacheBase.h
parent5650be68425960131225bcd3ea5a8dfc85074148 (diff)
Common: Remove the string parameters from the HookableEvent interface.
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.h')
-rw-r--r--Source/Core/VideoCommon/TextureCacheBase.h4
1 files changed, 2 insertions, 2 deletions
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;
};