diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 22:30:16 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2024-02-28 22:30:16 +0100 |
commit | a647f56b3a07da357b2ef5fd95b09df6dfb72a31 (patch) | |
tree | 9369c1541d59442da006a4ebed672765286d79a1 /test/raycast.cpp | |
parent | efa8631ad22c370f88950e2454665c5f10eb7452 (diff) |
fix a couple msvc warnings
Diffstat (limited to 'test/raycast.cpp')
-rw-r--r-- | test/raycast.cpp | 2 |
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) |