summaryrefslogtreecommitdiffstats
path: root/src/core/core.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2023-08-26 23:12:05 +0200
committerLiam <byteslice@airmail.cc>2023-08-26 23:12:05 +0200
commitb7523d6fa77a963409d5fbfec4879c22a6ef9f3f (patch)
treed9b7acc75eae4c216aeb39a3be6f3418fe3c894d /src/core/core.h
parentMerge pull request #11377 from BenjaminHalko/reverse-slider-input (diff)
downloadyuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar
yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.gz
yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.bz2
yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.lz
yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.xz
yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.tar.zst
yuzu-b7523d6fa77a963409d5fbfec4879c22a6ef9f3f.zip
Diffstat (limited to '')
-rw-r--r--src/core/core.h7
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:
/// Gets an immutable reference to the Room Network.
[[nodiscard]] const Network::RoomNetwork& GetRoomNetwork() const;
- void SetExitLock(bool locked);
- [[nodiscard]] bool GetExitLock() const;
+ void SetExitLocked(bool locked);
+ bool GetExitLocked() const;
+
+ void SetExitRequested(bool requested);
+ bool GetExitRequested() const;
void SetApplicationProcessBuildID(const CurrentBuildProcessID& id);
[[nodiscard]] const CurrentBuildProcessID& GetApplicationProcessBuildID() const;