Settings: register the Core::State type with Qt
This commit is contained in:
parent
7cb8d6612c
commit
6191f04524
|
@ -18,6 +18,7 @@
|
||||||
|
|
||||||
Settings::Settings()
|
Settings::Settings()
|
||||||
{
|
{
|
||||||
|
qRegisterMetaType<Core::State>();
|
||||||
Core::SetOnStateChangedCallback(
|
Core::SetOnStateChangedCallback(
|
||||||
[this](Core::State new_state) { emit EmulationStateChanged(new_state); });
|
[this](Core::State new_state) { emit EmulationStateChanged(new_state); });
|
||||||
}
|
}
|
||||||
|
|
|
@ -96,3 +96,5 @@ private:
|
||||||
std::unique_ptr<NetPlayServer> m_server;
|
std::unique_ptr<NetPlayServer> m_server;
|
||||||
Settings();
|
Settings();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Q_DECLARE_METATYPE(Core::State);
|
||||||
|
|
Loading…
Reference in New Issue