From 999f9532eec4ead1173fd23c701eabc11fb1d58b Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 16 Apr 2023 15:42:39 +1000 Subject: [PATCH] GS: Warning fix --- pcsx2/GS/GSExtra.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/GSExtra.h b/pcsx2/GS/GSExtra.h index 1e0e5985d2..5ae6cad362 100644 --- a/pcsx2/GS/GSExtra.h +++ b/pcsx2/GS/GSExtra.h @@ -124,7 +124,7 @@ static constexpr u32 VECTOR_ALIGNMENT = 32; /// Aligns allocation/pitch size to preferred host size. template -__fi static inline T VectorAlign(T value) +__fi static T VectorAlign(T value) { return Common::AlignUpPow2(value, VECTOR_ALIGNMENT); }