aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/Vector2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/api/Vector2.cpp')
-rw-r--r--src/crepe/api/Vector2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/api/Vector2.cpp b/src/crepe/api/Vector2.cpp
index 7da202a..97b74ac 100644
--- a/src/crepe/api/Vector2.cpp
+++ b/src/crepe/api/Vector2.cpp
@@ -10,7 +10,7 @@ Vector2 Vector2::operator+(const Vector2 & other) const {
return {x + other.x, y + other.y};
}
-Vector2 Vector2::operator*(float scalar) const {
+Vector2 Vector2::operator*(double scalar) const {
return {x * scalar, y * scalar};
}
@@ -26,7 +26,7 @@ Vector2 & Vector2::operator+=(const Vector2 & other) {
return *this;
}
-Vector2 & Vector2::operator+=(float other) {
+Vector2 & Vector2::operator+=(double other) {
x += other;
y += other;
return *this;