diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-21 17:51:02 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-11-21 17:51:02 +0100 |
commit | 966ac722d72c8d89e621987090b19f2bde0cb58c (patch) | |
tree | 571caa4c490dfbf7c8147d7c97e4dd33e470bd32 /src | |
parent | 51cc3877d4ab5a6bcb7ce0c4dd2fe2aefb6867a7 (diff) |
whitespace
Diffstat (limited to 'src')
-rw-r--r-- | src/tile-atlas.cpp | 2 |
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 }}; } |