From bfe496937e70b09ad1fadb9106b43dccc7936481 Mon Sep 17 00:00:00 2001 From: Holger Vogt Date: Sat, 28 Feb 2026 16:19:05 +0100 Subject: [PATCH] Add patch for span to add a time slot. --- src/frontend/com_fft.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/com_fft.c b/src/frontend/com_fft.c index 1716c6450..35b0d7b86 100644 --- a/src/frontend/com_fft.c +++ b/src/frontend/com_fft.c @@ -59,7 +59,7 @@ com_fft(wordlist *wl) length = (plot_cur->pl_scale)->v_length; time = (plot_cur->pl_scale)->v_realdata; - span = time[length-1] - time[0]; + span = time[length-1] - time[0] + time[length-1] - time[length-2]; #ifdef HAVE_LIBFFTW3 fpts = length/2 + 1;