summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--opentrack/simple-mat.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/opentrack/simple-mat.hpp b/opentrack/simple-mat.hpp
index 9518af90..17f19c45 100644
--- a/opentrack/simple-mat.hpp
+++ b/opentrack/simple-mat.hpp
@@ -130,7 +130,7 @@ struct Mat
return ret;
}
- Mat<num, w_, h_> operator*(const num& other) const
+ Mat<num, h_, w_> operator*(const num& other) const
{
Mat<num, h_, w_> ret;
for (int j = 0; j < h_; j++)