Fix bug caused by never returning a value

Probably does return in compiled code, but this was never explicitly defined.
This commit is contained in:
Kawe Mazidjatari 2023-04-08 19:01:35 +02:00
parent 1d04f837f8
commit 504a20945e

View File

@ -5245,6 +5245,7 @@ FORCEINLINE FourVectors RotateLeft(const FourVectors& src)
ret.x = RotateLeft(src.x);
ret.y = RotateLeft(src.y);
ret.z = RotateLeft(src.z);
return ret;
}
FORCEINLINE FourVectors RotateRight(const FourVectors& src)
@ -5253,6 +5254,7 @@ FORCEINLINE FourVectors RotateRight(const FourVectors& src)
ret.x = RotateRight(src.x);
ret.y = RotateRight(src.y);
ret.z = RotateRight(src.z);
return ret;
}
FORCEINLINE FourVectors MaskedAssign(const bi32x4& ReplacementMask, const FourVectors& NewValue, const FourVectors& OldValue)
{