Bug 1616386 - Fix Quaternion copy constructor r=lsalzman

Fix Quaternion copy constructor

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

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Imanol Fernandez 2020-02-18 21:37:21 +00:00
Родитель 23ff5b47cd
Коммит a980785958
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -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;
}