mirror of
https://github.com/hedge-dev/XenosRecomp.git
synced 2025-10-30 07:12:17 +00:00
Fix matrix multiplication ordering
Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
This commit is contained in:
parent
253c5954cd
commit
46938a4142
1 changed files with 1 additions and 1 deletions
|
|
@ -180,7 +180,7 @@ float rcp(T a)
|
|||
template<typename T>
|
||||
float4x4 mul(T a, T b)
|
||||
{
|
||||
return a * b;
|
||||
return b * a;
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue