From 7e7e0526dd3c63ee23ed89fd2f055799169e76d6 Mon Sep 17 00:00:00 2001 From: Bill Currie Date: Fri, 14 Feb 2020 20:42:36 +0900 Subject: [PATCH] Fix a double constant issue There will be more of these :/ --- ruamoko/game/Axe.r | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ruamoko/game/Axe.r b/ruamoko/game/Axe.r index 06c4ca083..2ea71f0ef 100644 --- a/ruamoko/game/Axe.r +++ b/ruamoko/game/Axe.r @@ -32,7 +32,7 @@ source = s.origin + '0 0 16'; traceline (source, source + v_forward * 64, NO, s); - if (trace_fraction == 1.0) + if (trace_fraction == 1.0f) return; org = trace_endpos - v_forward * 4;