mirror of
https://github.com/HandmadeMath/HandmadeMath.git
synced 2026-01-01 17:32:05 +00:00
Merge pull request #26 from bvisness/bug-fixes
Fix issues that came up in testing
This commit is contained in:
@@ -862,7 +862,7 @@ HMM_MultiplyVec3(hmm_vec3 Left, hmm_vec3 Right)
|
||||
{
|
||||
hmm_vec3 Result = {0};
|
||||
|
||||
Result.X = Left.Z * Right.X;
|
||||
Result.X = Left.X * Right.X;
|
||||
Result.Y = Left.Y * Right.Y;
|
||||
Result.Z = Left.Z * Right.Z;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user