Skip to content

Commit 8bbcaf8

Browse files
committed
CVector4D: fix broken /= operator
1 parent 314dcf8 commit 8bbcaf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Shared/sdk/CVector4D.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -149,7 +149,7 @@ class CVector4D
149149
fX /= vecRight.fX;
150150
fY /= vecRight.fY;
151151
fZ /= vecRight.fZ;
152-
fW /= vecRight.fZ;
152+
fW /= vecRight.fW;
153153
}
154154

155155
bool operator==(const CVector4D& param) const

0 commit comments

Comments
 (0)