mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
1d04f837f8
commit
504a20945e
@ -5245,6 +5245,7 @@ FORCEINLINE FourVectors RotateLeft(const FourVectors& src)
|
|||||||
ret.x = RotateLeft(src.x);
|
ret.x = RotateLeft(src.x);
|
||||||
ret.y = RotateLeft(src.y);
|
ret.y = RotateLeft(src.y);
|
||||||
ret.z = RotateLeft(src.z);
|
ret.z = RotateLeft(src.z);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
FORCEINLINE FourVectors RotateRight(const FourVectors& src)
|
FORCEINLINE FourVectors RotateRight(const FourVectors& src)
|
||||||
@ -5253,6 +5254,7 @@ FORCEINLINE FourVectors RotateRight(const FourVectors& src)
|
|||||||
ret.x = RotateRight(src.x);
|
ret.x = RotateRight(src.x);
|
||||||
ret.y = RotateRight(src.y);
|
ret.y = RotateRight(src.y);
|
||||||
ret.z = RotateRight(src.z);
|
ret.z = RotateRight(src.z);
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
FORCEINLINE FourVectors MaskedAssign(const bi32x4& ReplacementMask, const FourVectors& NewValue, const FourVectors& OldValue)
|
FORCEINLINE FourVectors MaskedAssign(const bi32x4& ReplacementMask, const FourVectors& NewValue, const FourVectors& OldValue)
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user