diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-18 03:00:56 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2022-10-18 03:00:56 +0200 |
commit | 1a95ead477a0bebbb7017b6b0423ce82cca3ea78 (patch) | |
tree | dbc6728ff50ec2721ea2f61a0f13e3252d3eb763 /main/update.cpp | |
parent | b7c90db8cc966ed7bff33fba1a49de2c384e5e38 (diff) |
a
Diffstat (limited to 'main/update.cpp')
-rw-r--r-- | main/update.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/update.cpp b/main/update.cpp index b1f6d945..9a65e182 100644 --- a/main/update.cpp +++ b/main/update.cpp @@ -6,7 +6,7 @@ void app::make_test_chunk(chunk& c) { constexpr auto N = TILE_MAX_DIM; for (auto [x, k, pt] : c) { - const auto& atlas = pt.x > N/2 && pt.y >= N/2 ? floor2 : floor1; + const auto& atlas = pt.x == N/2 || pt.y == N/2 ? floor2 : floor1; x.ground_image = { atlas, (std::uint8_t)(k % atlas->num_tiles().product()) }; } constexpr auto K = N/2; |