aboutsummaryrefslogtreecommitdiff
path: root/src/utils/matrix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/matrix.cpp')
-rw-r--r--src/utils/matrix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/matrix.cpp b/src/utils/matrix.cpp
index 6a9c69e..b970ec0 100644
--- a/src/utils/matrix.cpp
+++ b/src/utils/matrix.cpp
@@ -162,7 +162,7 @@ namespace util
void Matrix::transform(vertex * dst, const vertex * src, int size) const
{
- for (int i = 0; i<size; i++)
+ for (int i = 0; i<size; ++i)
{
// Store in temp variables in case src = dst
float x = (e[0] * src[i].x) + (e[4] * src[i].y) + (0) + (e[12]);