From 204fa7700419d8da8f7f207a92a92d853feb5d27 Mon Sep 17 00:00:00 2001 From: CaiB Date: Sun, 24 May 2020 15:17:32 +0900 Subject: [PATCH] Correcting config parameter name. Fixes #108 --- colorchord2/OutputCells.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/colorchord2/OutputCells.c b/colorchord2/OutputCells.c index a95d9cc..979b403 100644 --- a/colorchord2/OutputCells.c +++ b/colorchord2/OutputCells.c @@ -199,7 +199,7 @@ static void LEDParams(void * id ) led->satamp = 2; RegisterValue( "satamp", PAFLOAT, &led->satamp, sizeof( led->satamp ) ); led->total_leds = 300; RegisterValue( "leds", PAINT, &led->total_leds, sizeof( led->total_leds ) ); - led->steady_bright = 1; RegisterValue( "seady_bright", PAINT, &led->steady_bright, sizeof( led->steady_bright ) ); + led->steady_bright = 1; RegisterValue( "steady_bright", PAINT, &led->steady_bright, sizeof( led->steady_bright ) ); led->led_floor = .1; RegisterValue( "led_floor", PAFLOAT, &led->led_floor, sizeof( led->led_floor ) ); led->light_siding = 1.9;RegisterValue( "light_siding", PAFLOAT, &led->light_siding, sizeof( led->light_siding ) ); led->qtyamp = 20; RegisterValue( "qtyamp", PAFLOAT, &led->qtyamp, sizeof( led->qtyamp ) );