mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Typo fix, fixes #18038
This commit is contained in:
parent
fa9a13a99c
commit
9a7579f8fa
1 changed files with 1 additions and 1 deletions
|
@ -246,7 +246,7 @@ static Vec4<int> LightColorScaleBy512(const Vec4<int> &factor, const Vec4<int> &
|
|||
return LightColorScaleBy512SSE4(factor.ivec, color.ivec, _mm_set1_epi32(scale));
|
||||
#elif PPSSPP_ARCH(ARM64_NEON)
|
||||
int32x4_t multiplied = vmulq_n_s32(vmulq_s32(factor.ivec, color.ivec), scale);
|
||||
return vshrq_n_s32(multiplied, 10 + 19);
|
||||
return vshrq_n_s32(multiplied, 10 + 9);
|
||||
#endif
|
||||
return (factor * color * scale) >> (10 + 9);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue