summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2016-06-17 22:24:38 +0200
committerSubv <subv2112@gmail.com>2016-12-01 05:02:06 +0100
commit0a33d915f88b89e2fae20edc1e33a8ef60a2519c (patch)
treeb0eb3db13d9a21160ceb2fbb8d9e23ab1229659a /src/core/hle/service/service.h
parent Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inter Process Communication. (diff)
downloadyuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.gz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.bz2
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.lz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.xz
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.tar.zst
yuzu-0a33d915f88b89e2fae20edc1e33a8ef60a2519c.zip
Diffstat (limited to 'src/core/hle/service/service.h')
-rw-r--r--src/core/hle/service/service.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index fd15ad03f..8df968b2e 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -40,7 +40,7 @@ public:
* It should be overwritten by each service implementation for more fine-grained control.
* @returns The maximum number of connections allowed.
*/
- virtual u32 GetMaxSessions() { return DefaultMaxSessions; }
+ virtual u32 GetMaxSessions() const { return DefaultMaxSessions; }
void AddWaitingSession(Kernel::SharedPtr<Kernel::ServerSession> server_session) override { }