Skip to content

Commit

Permalink
Bug 1616386 - Fix Quaternion copy constructor r=lsalzman
Browse files Browse the repository at this point in the history
Fix Quaternion copy constructor

Differential Revision: https://phabricator.services.mozilla.com/D63255

--HG--
extra : moz-landing-system : lando
  • Loading branch information
MortimerGoro committed Feb 18, 2020
1 parent 23ff5b4 commit a980785
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gfx/2d/Quaternion.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class BaseQuaternion {
BaseQuaternion(const BaseQuaternion& aOther) {
x = aOther.x;
y = aOther.y;
z = aOther.y;
z = aOther.z;
w = aOther.w;
}

Expand Down

0 comments on commit a980785

Please sign in to comment.