diff options
Diffstat (limited to 'Source/Core/VideoCommon/AbstractGfx.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/AbstractGfx.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/AbstractGfx.cpp b/Source/Core/VideoCommon/AbstractGfx.cpp index ca6ad881b1..0e7e05e0f0 100644 --- a/Source/Core/VideoCommon/AbstractGfx.cpp +++ b/Source/Core/VideoCommon/AbstractGfx.cpp @@ -18,8 +18,8 @@ std::unique_ptr<AbstractGfx> g_gfx; AbstractGfx::AbstractGfx() { - m_config_changed = GetVideoEvents().config_changed_event.Register( - [this](u32 bits) { OnConfigChanged(bits); }, "AbstractGfx"); + m_config_changed = + GetVideoEvents().config_changed_event.Register([this](u32 bits) { OnConfigChanged(bits); }); } bool AbstractGfx::IsHeadless() const |
