mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Improve Restart function
Don't erase boot args Should now work correctly with game launchers
This commit is contained in:
parent
7050575fdb
commit
af3e1fc580
4 changed files with 14 additions and 7 deletions
|
|
@ -262,7 +262,8 @@ public:
|
|||
void Run();
|
||||
bool Pause();
|
||||
void Resume();
|
||||
void Stop();
|
||||
void Stop(bool restart = false);
|
||||
void Restart() { Stop(true); }
|
||||
|
||||
bool IsRunning() const { return m_state == system_state::running; }
|
||||
bool IsPaused() const { return m_state == system_state::paused; }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue