1
0
Fork 0

Compile fix

This commit is contained in:
Tiger Wang 2014-07-04 17:49:44 +01:00
parent 79e558be34
commit 25e9862206
1 changed files with 1 additions and 1 deletions

View File

@ -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)