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/VertexManagerBase.cpp | |
| parent | 5650be68425960131225bcd3ea5a8dfc85074148 (diff) | |
Common: Remove the string parameters from the HookableEvent interface.
Diffstat (limited to 'Source/Core/VideoCommon/VertexManagerBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/VertexManagerBase.cpp | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Source/Core/VideoCommon/VertexManagerBase.cpp b/Source/Core/VideoCommon/VertexManagerBase.cpp index 1af9ad8eb4..ce6c07ddb1 100644 --- a/Source/Core/VideoCommon/VertexManagerBase.cpp +++ b/Source/Core/VideoCommon/VertexManagerBase.cpp @@ -120,11 +120,10 @@ bool VertexManagerBase::Initialize() { auto& video_events = GetVideoEvents(); - m_frame_end_event = video_events.after_frame_event.Register( - [this](Core::System&) { OnEndFrame(); }, "VertexManagerBase"); + m_frame_end_event = + video_events.after_frame_event.Register([this](Core::System&) { OnEndFrame(); }); m_after_present_event = video_events.after_present_event.Register( - [this](const PresentInfo& pi) { m_ticks_elapsed = pi.emulated_timestamp; }, - "VertexManagerBase"); + [this](const PresentInfo& pi) { m_ticks_elapsed = pi.emulated_timestamp; }); m_index_generator.Init(); m_custom_shader_cache = std::make_unique<CustomShaderCache>(); m_cpu_cull.Init(); |
