mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Don't discard ConfigChanged callback handle
This commit is contained in:
parent
95ce41ac56
commit
b7db2510ef
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue