diff options
| author | 2023-08-26 17:12:05 -0400 | |
|---|---|---|
| committer | 2023-08-26 17:12:05 -0400 | |
| commit | b7523d6fa77a963409d5fbfec4879c22a6ef9f3f (patch) | |
| tree | d9b7acc75eae4c216aeb39a3be6f3418fe3c894d /src/core/core.h | |
| parent | Merge pull request #11377 from BenjaminHalko/reverse-slider-input (diff) | |
| download | yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.gz yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.xz yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.zip | |
am: shorten shutdown timeout when lock is not held
Diffstat (limited to 'src/core/core.h')
| -rw-r--r-- | src/core/core.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/src/core/core.h b/src/core/core.h index c70ea1965..a9ff9315e 100644 --- a/src/core/core.h +++ b/src/core/core.h | |||
| @@ -412,8 +412,11 @@ public: | |||
| 412 | /// Gets an immutable reference to the Room Network. | 412 | /// Gets an immutable reference to the Room Network. |
| 413 | [[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const; | 413 | [[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const; |
| 414 | 414 | ||
| 415 | void SetExitLock(bool locked); | 415 | void SetExitLocked(bool locked); |
| 416 | [[nodiscard]] bool GetExitLock() const; | 416 | bool GetExitLocked() const; |
| 417 | |||
| 418 | void SetExitRequested(bool requested); | ||
| 419 | bool GetExitRequested() const; | ||
| 417 | 420 | ||
| 418 | void SetApplicationProcessBuildID(const CurrentBuildProcessID& id); | 421 | void SetApplicationProcessBuildID(const CurrentBuildProcessID& id); |
| 419 | [[nodiscard]] const CurrentBuildProcessID& GetApplicationProcessBuildID() const; | 422 | [[nodiscard]] const CurrentBuildProcessID& GetApplicationProcessBuildID() const; |