From 2cb3ba50b896fef785102b212fb172c3f7a45c28 Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Tue, 8 Nov 2022 07:37:41 +0100 Subject: a --- shaders/tile.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shaders') 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 constexpr Math::Vector2 tile_shader::project(const Math::Vector3& 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 -- cgit v1.2.3