From 54ebe2571d23e298dcafa3d6c0a188e859ed2d83 Mon Sep 17 00:00:00 2001 From: AJ Martinez Date: Sat, 29 Apr 2023 22:48:07 -0700 Subject: [PATCH] Fix paren placement SIGFPE --- src/p_mobj.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/p_mobj.c b/src/p_mobj.c index b94b7f536..94a775866 100644 --- a/src/p_mobj.c +++ b/src/p_mobj.c @@ -11652,7 +11652,7 @@ void P_RespawnSpecials(void) } else if (pcount > 1) { - time = ((120 * TICRATE) / (((pcount - 1) * (pcount - 1)) / 3) + 1); + time = (120 * TICRATE) / ((((pcount - 1) * (pcount - 1)) / 3) + 1); // If the map is longer or shorter than 3 laps, then adjust ring respawn to account for this. // 5 lap courses would have more retreaded ground, while 2 lap courses would have less.