From ea5e6aecc58e3c9494488c2a653bdfc40c6aad87 Mon Sep 17 00:00:00 2001 From: Max Cahill Date: Mon, 30 Sep 2024 14:35:55 +1000 Subject: [PATCH] dropped the maximum steps for manual gc --- manual_gc.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manual_gc.lua b/manual_gc.lua index f392845..b698268 100644 --- a/manual_gc.lua +++ b/manual_gc.lua @@ -41,7 +41,7 @@ return function(time_budget, memory_ceiling, disable_otherwise) time_budget = time_budget or 1e-3 memory_ceiling = memory_ceiling or math.huge - local max_steps = 1000 + local max_steps = 100 local steps = 0 local start_time = love.timer.getTime() while