mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-03-05 02:09:21 -05:00
Don't discard ConfigChanged callback handle
This commit is contained in:
@@ -18,7 +18,8 @@ std::unique_ptr<AbstractGfx> g_gfx;
|
||||
|
||||
AbstractGfx::AbstractGfx()
|
||||
{
|
||||
ConfigChangedEvent::Register([this](u32 bits) { OnConfigChanged(bits); }, "AbstractGfx");
|
||||
m_config_changed =
|
||||
ConfigChangedEvent::Register([this](u32 bits) { OnConfigChanged(bits); }, "AbstractGfx");
|
||||
}
|
||||
|
||||
bool AbstractGfx::IsHeadless() const
|
||||
|
||||
Reference in New Issue
Block a user