mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-04-30 00:00:30 -05:00
Common: Remove the string parameters from the HookableEvent interface.
This commit is contained in:
@@ -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()
|
||||
|
||||
@@ -95,8 +95,8 @@ bool GraphicsModManager::Initialize()
|
||||
g_ActiveConfig.graphics_mod_config->SetChangeCount(old_game_mod_changes);
|
||||
g_graphics_mod_manager->Load(*g_ActiveConfig.graphics_mod_config);
|
||||
|
||||
m_end_of_frame_event = GetVideoEvents().after_frame_event.Register(
|
||||
[this](Core::System&) { EndOfFrame(); }, "ModManager");
|
||||
m_end_of_frame_event =
|
||||
GetVideoEvents().after_frame_event.Register([this](Core::System&) { EndOfFrame(); });
|
||||
}
|
||||
|
||||
return true;
|
||||
|
||||
Reference in New Issue
Block a user