mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
system: add SetState API
This commit is contained in:
parent
662cf612bf
commit
79a2485a41
|
|
@ -244,6 +244,11 @@ public:
|
||||||
m_state = system_state::running;
|
m_state = system_state::running;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void SetState(system_state state)
|
||||||
|
{
|
||||||
|
m_state = state;
|
||||||
|
}
|
||||||
|
|
||||||
void Init();
|
void Init();
|
||||||
|
|
||||||
std::vector<std::string> argv;
|
std::vector<std::string> argv;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue