diff options
| author | 2021-05-10 15:41:46 -0700 | |
|---|---|---|
| committer | 2021-05-10 15:41:46 -0700 | |
| commit | 75f23ad494cc1576f12b27b626e3c0de6817a7de (patch) | |
| tree | 61f2e2c884b44cf058fe8bb740db4a7877501926 | |
| parent | hle: ipc: Add declarations for TIPC. (diff) | |
| download | yuzu-75f23ad494cc1576f12b27b626e3c0de6817a7de.tar.gz yuzu-75f23ad494cc1576f12b27b626e3c0de6817a7de.tar.xz yuzu-75f23ad494cc1576f12b27b626e3c0de6817a7de.zip | |
hle: kernel: KClientPort: Cleanup comment format.
| -rw-r--r-- | src/core/hle/kernel/k_client_port.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/k_client_port.cpp b/src/core/hle/kernel/k_client_port.cpp index e14b915b9..4a12dee10 100644 --- a/src/core/hle/kernel/k_client_port.cpp +++ b/src/core/hle/kernel/k_client_port.cpp | |||
| @@ -91,7 +91,7 @@ ResultCode KClientPort::CreateSession(KClientSession** out) { | |||
| 91 | // Create a new session. | 91 | // Create a new session. |
| 92 | KSession* session = KSession::Create(kernel); | 92 | KSession* session = KSession::Create(kernel); |
| 93 | if (session == nullptr) { | 93 | if (session == nullptr) { |
| 94 | /* Decrement the session count. */ | 94 | // Decrement the session count. |
| 95 | const auto prev = num_sessions--; | 95 | const auto prev = num_sessions--; |
| 96 | if (prev == max_sessions) { | 96 | if (prev == max_sessions) { |
| 97 | this->NotifyAvailable(); | 97 | this->NotifyAvailable(); |