diff options
Diffstat (limited to '')
-rw-r--r-- | src/Vector3.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Vector3.h b/src/Vector3.h index f350ede2a..9e855b8af 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -137,7 +137,7 @@ public: /** Runs each value of the vector through std::floor() */ inline Vector3<int> Floor(void) const { - return Vector3i( + return Vector3<int>( (int)floor(x), (int)floor(y), (int)floor(z) |