mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-14 21:37:52 -07:00
Merge pull request #6062 from ligfx/fixqtcorestate
Settings: register the Core::State type with Qt
This commit is contained in:
commit
68baf7d8fc
@ -18,6 +18,7 @@
|
||||
|
||||
Settings::Settings()
|
||||
{
|
||||
qRegisterMetaType<Core::State>();
|
||||
Core::SetOnStateChangedCallback(
|
||||
[this](Core::State new_state) { emit EmulationStateChanged(new_state); });
|
||||
}
|
||||
|
@ -96,3 +96,5 @@ private:
|
||||
std::unique_ptr<NetPlayServer> m_server;
|
||||
Settings();
|
||||
};
|
||||
|
||||
Q_DECLARE_METATYPE(Core::State);
|
||||
|
Loading…
Reference in New Issue
Block a user