summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/resistor.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/resistor.c b/apps/plugins/resistor.c
index d8ac8f5..d0f4fc0 100644
--- a/apps/plugins/resistor.c
+++ b/apps/plugins/resistor.c
@@ -851,11 +851,11 @@ static void resistance_to_color(void)
units_used = RES_BLACK;
break;
case 1: /* KOhms */
- units_used = RES_RED;
+ units_used = RES_ORANGE;
kbd_input_int *= 1000;
break;
case 2: /* MOhms */
- units_used = RES_GREEN;
+ units_used = RES_BLUE;
kbd_input_int *= 1000000;
break;
}