diff options
author | bunnei <bunneidev@gmail.com> | 2020-07-11 20:54:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-11 20:54:34 +0200 |
commit | 7a051c497386e443d5d2a5f3e3493d734d963687 (patch) | |
tree | cbd176cf7b3dd85cde0b8fb65f8df38727d1c9a5 | |
parent | Merge pull request #4203 from VolcaEM/services (diff) | |
parent | Common: remove a mod from AlignUp (#5441) (diff) | |
download | yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.tar yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.tar.gz yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.tar.bz2 yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.tar.lz yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.tar.xz yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.tar.zst yuzu-7a051c497386e443d5d2a5f3e3493d734d963687.zip |
-rw-r--r-- | src/common/alignment.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/alignment.h b/src/common/alignment.h index f8c49e079..516bb26c1 100644 --- a/src/common/alignment.h +++ b/src/common/alignment.h @@ -11,7 +11,9 @@ namespace Common { template <typename T> constexpr T AlignUp(T value, std::size_t size) { static_assert(std::is_unsigned_v<T>, "T must be an unsigned value."); - return static_cast<T>(value + (size - value % size) % size); + auto mod{value % size}; + value -= mod; + return static_cast<T>(mod == T{0} ? value : value + size); } template <typename T> |