summaryrefslogtreecommitdiffhomepage
path: root/shaders/tile.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'shaders/tile.cpp')
-rw-r--r--shaders/tile.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/shaders/tile.cpp b/shaders/tile.cpp
index 8d859ff3..d5f6b7d3 100644
--- a/shaders/tile.cpp
+++ b/shaders/tile.cpp
@@ -74,7 +74,7 @@ void tile_shader::_draw()
float tile_shader::depth_value(const local_coords& xy, float offset) noexcept
{
- return (xy.to_index() + offset)*depth_tile_size;
+ return depth_tile_size + (xy.to_index() + offset)*depth_tile_size;
}
} // namespace floormat