summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/Present.cpp
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/Present.cpp
parent5650be68425960131225bcd3ea5a8dfc85074148 (diff)
Common: Remove the string parameters from the HookableEvent interface.
Diffstat (limited to 'Source/Core/VideoCommon/Present.cpp')
-rw-r--r--Source/Core/VideoCommon/Present.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/Present.cpp b/Source/Core/VideoCommon/Present.cpp
index 24c767cc69..a8266a18a7 100644
--- a/Source/Core/VideoCommon/Present.cpp
+++ b/Source/Core/VideoCommon/Present.cpp
@@ -94,8 +94,8 @@ static void TryToSnapToXFBSize(int& width, int& height, int xfb_width, int xfb_h
Presenter::Presenter()
{
- m_config_changed = GetVideoEvents().config_changed_event.Register(
- [this](u32 bits) { ConfigChanged(bits); }, "Presenter");
+ m_config_changed =
+ GetVideoEvents().config_changed_event.Register([this](u32 bits) { ConfigChanged(bits); });
}
Presenter::~Presenter()