summaryrefslogtreecommitdiffhomepage
path: root/main
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-04-12 19:52:58 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-04-12 19:53:16 +0200
commitd748a3c14e4f5346bc8aff6882c1d082cf3fbd22 (patch)
tree97325dd0d4e02319177bfb4dc88998401a25ace1 /main
parente919e87ffad2f7271b64190d6df358444d000d44 (diff)
introduce constant for max chunks drawn on screen
Diffstat (limited to 'main')
-rw-r--r--main/draw.cpp12
1 files changed, 7 insertions, 5 deletions
diff --git a/main/draw.cpp b/main/draw.cpp
index 028f6ac6..e124389f 100644
--- a/main/draw.cpp
+++ b/main/draw.cpp
@@ -103,11 +103,13 @@ auto main_impl::get_draw_bounds() const noexcept -> draw_bounds
y1 = std::max(y1, p.y);
}
- constexpr int16_t max = 7, min = -max;
- x0 = std::clamp(x0, min, max);
- x1 = std::clamp(x1, min, max);
- y0 = std::clamp(y0, min, max);
- y1 = std::clamp(y1, min, max);
+ constexpr int16_t maxx = tile_shader::max_screen_tiles.x()/2 - 1, minx = -maxx,
+ maxy = tile_shader::max_screen_tiles.y()/2 - 1, miny = -maxy;
+
+ x0 = std::clamp(x0, minx, maxx);
+ x1 = std::clamp(x1, minx, maxx);
+ y0 = std::clamp(y0, miny, maxy);
+ y1 = std::clamp(y1, miny, maxy);
return {x0, x1, y0, y1};
}