summaryrefslogtreecommitdiffstats
path: root/src/math/Vector2D.h
diff options
context:
space:
mode:
authorSergeanur <s.anureev@yandex.ua>2020-09-14 19:48:49 +0200
committerSergeanur <s.anureev@yandex.ua>2020-09-14 20:10:23 +0200
commita8a28c151273e5d1a33707b61304e27762eb6378 (patch)
treef6b62a86f7d4496ee405279092fe029545694748 /src/math/Vector2D.h
parentMerge pull request #702 from Sergeanur/VC/MusicManager (diff)
downloadre3-a8a28c151273e5d1a33707b61304e27762eb6378.tar
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.gz
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.bz2
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.lz
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.xz
re3-a8a28c151273e5d1a33707b61304e27762eb6378.tar.zst
re3-a8a28c151273e5d1a33707b61304e27762eb6378.zip
Diffstat (limited to 'src/math/Vector2D.h')
-rw-r--r--src/math/Vector2D.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/math/Vector2D.h b/src/math/Vector2D.h
index 7bfccae6..2c4e57b5 100644
--- a/src/math/Vector2D.h
+++ b/src/math/Vector2D.h
@@ -18,7 +18,7 @@ public:
x *= invsqrt;
y *= invsqrt;
}else
- y = 1.0f;
+ x = 1.0f;
}
const CVector2D &operator+=(CVector2D const &right) {