summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-10-19 12:44:38 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-10-19 12:44:38 +0200
commite8a7d188eb186204dc8d8e25aa732e14fac96594 (patch)
treee8b0c3bffa4906a299b374576a9a887364a1f1e8
parent05f95737829c56032fd1adf25441be31aed3c685 (diff)
a
-rw-r--r--editor/camera.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/editor/camera.cpp b/editor/camera.cpp
index eb641c95..6dcaaa7d 100644
--- a/editor/camera.cpp
+++ b/editor/camera.cpp
@@ -143,8 +143,8 @@ void app::update_cursor_tile(const Optional<Vector2i>& pixel)
const auto tile_ = Vector2(M->pixel_to_tile_(Vector2d(*pixel)));
const auto curchunk = Vector2(tile.chunk());
const auto subpixel_ = Vector2(std::fmod(tile_[0], 1.f), std::fmod(tile_[1], 1.f));
- auto subpixel = TILE_SIZE2 * Vector2(curchunk[0] < 0 ? 1 + subpixel_[0] : subpixel_[0],
- curchunk[1] < 0 ? 1 + subpixel_[1] : subpixel_[1]);
+ auto subpixel = TILE_SIZE2 * Vector2(curchunk.x() < 0 ? 1 + subpixel_[0] : subpixel_[0],
+ curchunk.y() < 0 ? 1 + subpixel_[1] : subpixel_[1]);
constexpr auto half_tile = Vector2(iTILE_SIZE2/2);
subpixel -= half_tile;
subpixel.x() = Math::clamp(std::round(subpixel.x()), -half_tile.x(), half_tile.x()-1);