mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-11 09:18:02 -05:00
hle: kernel: Process: Various style fixes based on code review feedback.
This commit is contained in:
@ -217,12 +217,12 @@ public:
|
||||
}
|
||||
|
||||
/// Gets the process schedule count, used for thread yelding
|
||||
constexpr s64 GetScheduledCount() const {
|
||||
s64 GetScheduledCount() const {
|
||||
return schedule_count;
|
||||
}
|
||||
|
||||
/// Increments the process schedule count, used for thread yielding.
|
||||
constexpr void IncrementScheduledCount() {
|
||||
void IncrementScheduledCount() {
|
||||
++schedule_count;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user