GS: Warning fix

This commit is contained in:
Connor McLaughlin 2023-04-16 15:42:39 +10:00 committed by refractionpcsx2
parent d1f62ca9bf
commit 999f9532ee
1 changed files with 1 additions and 1 deletions

View File

@ -124,7 +124,7 @@ static constexpr u32 VECTOR_ALIGNMENT = 32;
/// Aligns allocation/pitch size to preferred host size. /// Aligns allocation/pitch size to preferred host size.
template<typename T> template<typename T>
__fi static inline T VectorAlign(T value) __fi static T VectorAlign(T value)
{ {
return Common::AlignUpPow2(value, VECTOR_ALIGNMENT); return Common::AlignUpPow2(value, VECTOR_ALIGNMENT);
} }