summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
Diffstat (limited to 'src/core')
-rw-r--r--src/core/hle/kernel/process.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/process.h b/src/core/hle/kernel/process.h
index 36d8547bd..e412e58aa 100644
--- a/src/core/hle/kernel/process.h
+++ b/src/core/hle/kernel/process.h
@@ -217,12 +217,12 @@ public:
217 } 217 }
218 218
219 /// Gets the process schedule count, used for thread yelding 219 /// Gets the process schedule count, used for thread yelding
220 constexpr s64 GetScheduledCount() const { 220 s64 GetScheduledCount() const {
221 return schedule_count; 221 return schedule_count;
222 } 222 }
223 223
224 /// Increments the process schedule count, used for thread yielding. 224 /// Increments the process schedule count, used for thread yielding.
225 constexpr void IncrementScheduledCount() { 225 void IncrementScheduledCount() {
226 ++schedule_count; 226 ++schedule_count;
227 } 227 }
228 228