Misc: RISC-V build fixes

This commit is contained in:
Stenzek
2024-07-19 22:23:13 +10:00
parent 0815aedca2
commit 56dd9878e1
2 changed files with 6 additions and 6 deletions

View File

@ -115,7 +115,7 @@ public:
{
}
ALWAYS_INLINE explicit GSVector2i(const GSVector2i& v) { std::memcpy(I32, v.I32, sizeof(I32)); }
ALWAYS_INLINE GSVector2i(const GSVector2i& v) { std::memcpy(I32, v.I32, sizeof(I32)); }
// MSVC has bad codegen for the constexpr version when applied to non-constexpr things (https://godbolt.org/z/h8qbn7),
// so leave the non-constexpr version default