From 4c675065438f1c50abd6c000c8c9f4836231a3c6 Mon Sep 17 00:00:00 2001 From: AKuHAK <621640+AKuHAK@users.noreply.github.com> Date: Sun, 11 Aug 2024 21:41:09 +0300 Subject: [PATCH] Ignore CD TE errors on 50k --- base/elect.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/elect.c b/base/elect.c index a94462b..291e04a 100644 --- a/base/elect.c +++ b/base/elect.c @@ -697,7 +697,7 @@ static int ElectJudgeCDTELoopGain(const char *result, int len) else { PlatShowEMessage("CD TE LOOP GAIN NG: %d\n", value); - return (ConSlim == 1) ? 0 : 1; + return ((ConSlim == 1) || (ConType == MECHA_TYPE_40)) ? 0 : 1; } }