Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 20cbfa54 authored by Vinit Nayak's avatar Vinit Nayak
Browse files

Fix direction of matrix inversion

* "And I would have gotten away with it too
if it wasn't for you meddling [matrices]"

Fixes: 208360236
Change-Id: I1607a19c81830f6a037d2337ee1d9e944096e0ac
parent b15d3cfe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -316,7 +316,7 @@ public final class TaskViewUtils {
                mt[i] = localMt;

                Matrix localMti = new Matrix();
                localMti.invert(localMt);
                localMt.invert(localMti);
                mti[i] = localMti;
            }