From c522917644636e874fe56225515cdbbabd9cc95e Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Wed, 4 Aug 2021 10:55:37 -0400 Subject: plugins/resistor: Fix incorrect check for a valid 4th band value Change-Id: I499bcd6d2d6fd5dd92c184cc1ec014e62f0441fa --- apps/plugins/resistor.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/plugins/resistor.c b/apps/plugins/resistor.c index 2e204010a9..d32ac3fad9 100644 --- a/apps/plugins/resistor.c +++ b/apps/plugins/resistor.c @@ -953,9 +953,9 @@ static void color_to_resistance(void) if(third_band==RES_INVALID) break; fourth_band = do_fourth_band_menu(); - if(third_band==RES_INVALID) break; - - total_resistance_centiunits = calculate_resistance(first_band, + if(fourth_band==RES_INVALID) break; + + total_resistance_centiunits = calculate_resistance(first_band, second_band, third_band); -- cgit v1.2.3