summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2022-11-21 17:51:02 +0100
committerStanislaw Halik <sthalik@misaki.pl>2022-11-21 17:51:02 +0100
commit966ac722d72c8d89e621987090b19f2bde0cb58c (patch)
tree571caa4c490dfbf7c8147d7c97e4dd33e470bd32
parent51cc3877d4ab5a6bcb7ce0c4dd2fe2aefb6867a7 (diff)
whitespace
-rw-r--r--src/tile-atlas.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tile-atlas.cpp b/src/tile-atlas.cpp
index 44efd45b..9b3886da 100644
--- a/src/tile-atlas.cpp
+++ b/src/tile-atlas.cpp
@@ -42,7 +42,7 @@ auto tile_atlas::make_texcoords(Vector2ui pixel_size, Vector2ub tile_count, std:
{ (x0+x1) / pixel_size[0], 1 - (y0+y1) / pixel_size[1] }, // bottom right
{ (x0+x1) / pixel_size[0], 1 - y0 / pixel_size[1] }, // top right
{ x0 / pixel_size[0], 1 - (y0+y1) / pixel_size[1] }, // bottom left
- { x0 / pixel_size[0], 1 - y0 / pixel_size[1] }, // top left
+ { x0 / pixel_size[0], 1 - y0 / pixel_size[1] }, // top left
}};
}