diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-11-06 22:08:27 -0600 |
|---|---|---|
| committer | Jordan Woyak <jordan.woyak@gmail.com> | 2025-11-06 22:34:40 -0600 |
| commit | da6c65bf3b83fa1cfe5da5dc5e43ec49b2786b52 (patch) | |
| tree | 1538fff3c783052707c8513738ba5cdc636ece48 /Source/Core/VideoCommon/VideoConfig.cpp | |
| parent | 5650be68425960131225bcd3ea5a8dfc85074148 (diff) | |
Common: Remove the string parameters from the HookableEvent interface.
Diffstat (limited to 'Source/Core/VideoCommon/VideoConfig.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VideoConfig.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/VideoConfig.cpp b/Source/Core/VideoCommon/VideoConfig.cpp index 63d061e684..c4d764176c 100644 --- a/Source/Core/VideoCommon/VideoConfig.cpp +++ b/Source/Core/VideoCommon/VideoConfig.cpp @@ -221,8 +221,8 @@ void VideoConfig::VerifyValidity() void VideoConfig::Init() { - s_check_config_event = GetVideoEvents().after_frame_event.Register( - [](Core::System&) { CheckForConfigChanges(); }, "CheckForConfigChanges"); + s_check_config_event = + GetVideoEvents().after_frame_event.Register([](Core::System&) { CheckForConfigChanges(); }); } void VideoConfig::Shutdown() |
