From 68d0d07af59ada59ab6a60d2111f56efbd4ff7ef Mon Sep 17 00:00:00 2001 From: gatecat Date: Thu, 27 Aug 2026 09:45:42 +0200 Subject: [PATCH] himbaechel: Fix logic in updating pip delay structures Signed-off-by: gatecat --- himbaechel/arch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/himbaechel/arch.cc b/himbaechel/arch.cc index 02904951..ba86ae0e 100644 --- a/himbaechel/arch.cc +++ b/himbaechel/arch.cc @@ -416,7 +416,7 @@ const std::vector Arch::availableRouters = {"default", "router1", " void Arch::set_fast_pip_delays(bool fast_mode) { - if (fast_mode && !fast_pip_delays) { + if (!fast_mode && fast_pip_delays) { // Have to rebuild these structures drive_res.clear(); load_cap.clear();