mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-08-20 01:15:08 -05:00
Common: Remove the string parameters from the HookableEvent interface.
This commit is contained in:
@@ -463,8 +463,8 @@ private:
|
||||
|
||||
void OnFrameEnd();
|
||||
|
||||
Common::EventHook m_frame_event = GetVideoEvents().after_frame_event.Register(
|
||||
[this](Core::System&) { OnFrameEnd(); }, "TextureCache");
|
||||
Common::EventHook m_frame_event =
|
||||
GetVideoEvents().after_frame_event.Register([this](Core::System&) { OnFrameEnd(); });
|
||||
|
||||
VideoCommon::TextureUtils::TextureDumper m_texture_dumper;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user