From df7c5a706755c7320ee580e87cc8cf862af7e511 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Wed, 8 Jan 2020 00:06:24 +0100 Subject: [PATCH] - use proper math instead of crash-prone libdivide here. --- source/build/src/engine.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/source/build/src/engine.cpp b/source/build/src/engine.cpp index 49f34fa72..1fe231be2 100644 --- a/source/build/src/engine.cpp +++ b/source/build/src/engine.cpp @@ -207,7 +207,8 @@ static void getclosestpointonwall_internal(vec2_t const p, int32_t const dawall, return; } - i = tabledivide64((i << 15), j) << 15; + i = ((i << 15) / j) << 15; + //i = tabledivide64((i << 15), j) << 15; *closest = { (int32_t)(w.x + ((d.x * i) >> 30)), (int32_t)(w.y + ((d.y * i) >> 30)) }; }