diff options
author | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-01-30 11:20:35 +0100 |
---|---|---|
committer | Chloe Marcec <dmarcecguzman@gmail.com> | 2021-01-30 11:20:35 +0100 |
commit | 56742c6222b7185b43a3463955c58a142ed33c1e (patch) | |
tree | ebd7e4b4d80e39ce533ec288c0c07f459e66eb92 /src/core | |
parent | Drop m_ from lock (diff) | |
download | yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.tar yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.tar.gz yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.tar.bz2 yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.tar.lz yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.tar.xz yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.tar.zst yuzu-56742c6222b7185b43a3463955c58a142ed33c1e.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/kernel/k_resource_limit.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/k_resource_limit.cpp b/src/core/hle/kernel/k_resource_limit.cpp index 65c30e9b3..1bcc390ff 100644 --- a/src/core/hle/kernel/k_resource_limit.cpp +++ b/src/core/hle/kernel/k_resource_limit.cpp @@ -98,12 +98,12 @@ bool KResourceLimit::Reserve(LimitableResource which, s64 value, s64 timeout) { return false; } - /* Loop until we reserve or run out of time. */ + // Loop until we reserve or run out of time. while (true) { ASSERT(current_values[index] <= limit_values[index]); ASSERT(current_hints[index] <= current_values[index]); - /* If we would overflow, don't allow to succeed. */ + // If we would overflow, don't allow to succeed. if (current_values[index] + value <= current_values[index]) { break; } |