Merge pull request #17632 from m4xw/softgpu

[Softgpu] Fix AArch64 oversight
This commit is contained in:
Henrik Rydgård 2023-06-27 17:43:23 +02:00 committed by GitHub
commit 1fa37e1241
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -587,7 +587,7 @@ public:
#elif defined(_M_SSE)
return _mm_cvtps_epi32(_mm_loadu_ps(&x));
#elif PPSSPP_ARCH(ARM64_NEON)
return vcvtq_s32_f32(ivec);
return vcvtq_s32_f32(vec);
#endif
}
if constexpr (std::is_same<T, int>::value && std::is_same<T2, float>::value) {