mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-10 17:02:47 +01:00
Revert "Port citra-emu/citra#5441: "Common: remove a mod from AlignUp""
This commit is contained in:
parent
7a051c4973
commit
1074c87f18
1 changed files with 1 additions and 3 deletions
|
@ -11,9 +11,7 @@ namespace Common {
|
||||||
template <typename T>
|
template <typename T>
|
||||||
constexpr T AlignUp(T value, std::size_t size) {
|
constexpr T AlignUp(T value, std::size_t size) {
|
||||||
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
static_assert(std::is_unsigned_v<T>, "T must be an unsigned value.");
|
||||||
auto mod{value % size};
|
return static_cast<T>(value + (size - value % size) % size);
|
||||||
value -= mod;
|
|
||||||
return static_cast<T>(mod == T{0} ? value : value + size);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
|
|
Loading…
Reference in a new issue