From b765225ed8cbfbbe32652e67841a2a283e0ab75f Mon Sep 17 00:00:00 2001 From: CEisenhofer Date: Tue, 7 Jan 2025 10:06:38 +0100 Subject: [PATCH] Calculation based on wrong update list --- src/ast/sls/sls_seq_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ast/sls/sls_seq_plugin.cpp b/src/ast/sls/sls_seq_plugin.cpp index 2ab01495a..ff951d4c1 100644 --- a/src/ast/sls/sls_seq_plugin.cpp +++ b/src/ast/sls/sls_seq_plugin.cpp @@ -1676,7 +1676,7 @@ namespace sls { if (!is_str_update) { i = m_int_updates.size(); do { - lim -= m_str_updates[--i].m_score; + lim -= m_int_updates[--i].m_score; } while (lim >= 0 && i > 0); }