summaryrefslogtreecommitdiffhomepage
path: root/test/raycast.cpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2024-02-28 22:30:16 +0100
committerStanislaw Halik <sthalik@misaki.pl>2024-02-28 22:30:16 +0100
commita647f56b3a07da357b2ef5fd95b09df6dfb72a31 (patch)
tree9369c1541d59442da006a4ebed672765286d79a1 /test/raycast.cpp
parentefa8631ad22c370f88950e2454665c5f10eb7452 (diff)
fix a couple msvc warnings
Diffstat (limited to 'test/raycast.cpp')
-rw-r--r--test/raycast.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/raycast.cpp b/test/raycast.cpp
index fffaae0f..3bf26cdd 100644
--- a/test/raycast.cpp
+++ b/test/raycast.cpp
@@ -63,7 +63,7 @@ world make_world()
auto run(point from, point to, world& w, bool b, float len)
{
- constexpr float fuzz = iTILE_SIZE2.x();
+ constexpr float fuzz = TILE_SIZE2.x();
auto diag = rc::raycast_diag_s{};
auto res = raycast_with_diag(diag, w, from, to, 0);
if (res.success != b)