De-duplicate falloff memory assignment
@ -992,9 +992,7 @@ as of 0.4.0 all options are specified in config file, see in '/home/username/.co
nanosleep(&req, NULL);
#endif
for (o = 0; o < bars; o++) {
flastd[o] = f[o];
}
memcpy(flastd, f, 200 * sizeof(int));
// checking if audio thread has exited unexpectedly
if (audio.terminate == 1) {
@ -249,8 +249,6 @@ int draw_terminal_ncurses(int is_tty, int terminal_height, int terminal_width, i
memcpy(flastd, f, sizeof(*f)); // Memory for falloff func
refresh();
return 0;