WiimoteEmu: Make the "Total Yaw" setting work again.

This commit is contained in:
Jordan Woyak
2020-01-03 18:24:41 -06:00
parent 723115b7b6
commit 0aacf3a627
6 changed files with 66 additions and 19 deletions

View File

@ -288,6 +288,8 @@ public:
static void Multiply(const Matrix33& a, const Matrix33& b, Matrix33* result);
static void Multiply(const Matrix33& a, const Vec3& vec, Vec3* result);
Matrix33 Inverted() const;
Matrix33& operator*=(const Matrix33& rhs)
{
Multiply(*this, rhs, this);