core: Track system exit lock status

Used to determine if yuzu should confirm before pausing or stopping a game.
This commit is contained in:
Zach Hilman 2019-07-06 13:08:33 -04:00
parent a1b8e5d09a
commit bbc1437188
2 changed files with 15 additions and 0 deletions

View file

@ -322,6 +322,10 @@ public:
const Service::APM::Controller& GetAPMController() const;
void SetExitLock(bool locked);
bool GetExitLock() const;
private:
System();