mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 23:11:14 +01:00
Settings: register the Core::State type with Qt
This commit is contained in:
parent
7cb8d6612c
commit
6191f04524
@ -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…
x
Reference in New Issue
Block a user