diff options
| author | Jordan Woyak <jordan.woyak@gmail.com> | 2025-11-07 16:32:06 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-11-07 16:32:06 -0600 |
| commit | 5af9bd5e4630c671e8a7c71a598d803af028f195 (patch) | |
| tree | 65e0b320f383eb90afd22842ada615b5409e727d /Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp | |
| parent | 51cd0a676a7979f31751af28485c8cfcd9e5a483 (diff) | |
| parent | da6c65bf3b83fa1cfe5da5dc5e43ec49b2786b52 (diff) | |
Merge pull request #14074 from jordan-woyak/HookableEvent-no-strings
Common: Remove the string parameters from the HookableEvent interface.
Diffstat (limited to 'Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp index 0bf8e844ec..a3c98ee9d7 100644 --- a/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp +++ b/Source/Core/VideoCommon/GraphicsModSystem/Runtime/CustomShaderCache.cpp @@ -18,7 +18,7 @@ CustomShaderCache::CustomShaderCache() m_async_uber_shader_compiler->StartWorkerThreads(1); // TODO m_frame_end_handler = GetVideoEvents().after_frame_event.Register( - [this](Core::System&) { RetrieveAsyncShaders(); }, "RetrieveAsyncShaders"); + [this](Core::System&) { RetrieveAsyncShaders(); }); } CustomShaderCache::~CustomShaderCache() |
