summaryrefslogtreecommitdiffhomepage
path: root/shaders
diff options
context:
space:
mode:
Diffstat (limited to 'shaders')
-rw-r--r--shaders/tile.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shaders/tile.hpp b/shaders/tile.hpp
index e156802a..2be1414a 100644
--- a/shaders/tile.hpp
+++ b/shaders/tile.hpp
@@ -55,7 +55,7 @@ template<typename T>
constexpr Math::Vector2<T> tile_shader::project(const Math::Vector3<T>& pt)
{
const auto x = pt[0], y = pt[1], z = pt[2];
- return { (x-y), (x+y+z*2)*T(.59) };
+ return { x-y, (x+y+z*2)*T(.59) };
}
template<typename T>