From 2d3de65160478ddf47d564bf0e9a1880c6d3576f Mon Sep 17 00:00:00 2001 From: DiSlord Date: Mon, 6 Jul 2020 00:09:46 +0300 Subject: [PATCH] fix typo --- sa_core.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sa_core.c b/sa_core.c index 354f1f5..aabc80a 100644 --- a/sa_core.c +++ b/sa_core.c @@ -1687,7 +1687,7 @@ sweep_again: // stay in sweep loop when output mo if (setting.actual_sweep_time_us > ONE_SECOND_TIME && (i & 0x07) == 0) { // if required int pos = i * (WIDTH+1) / sweep_points; ili9341_fill(OFFSETX, HEIGHT_NOSCROLL+1, pos, 1, BRIGHT_COLOR_GREEN); // update sweep progress bar - ili9341_fill(OFFSETX+i, HEIGHT_NOSCROLL+1, WIDTH-pos, 1, 0); + ili9341_fill(OFFSETX+pos, HEIGHT_NOSCROLL+1, WIDTH-pos, 1, 0); } // ------------------------ do all RSSI calculations from CALC menu -------------------