diff options
Diffstat (limited to 'opentrack/simple-mat.hpp')
-rw-r--r-- | opentrack/simple-mat.hpp | 2 |
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++) |