From 4b0516966db6fea7df8edd9f8f2797c4dc40f1bd Mon Sep 17 00:00:00 2001 From: Ryzerth Date: Thu, 1 Apr 2021 17:33:59 +0200 Subject: [PATCH] Fixed missing semicolon --- core/src/dsp/processing.h | 2 +- make_windows_package.ps1 | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/src/dsp/processing.h b/core/src/dsp/processing.h index 5f18d3f..ed783e5 100644 --- a/core/src/dsp/processing.h +++ b/core/src/dsp/processing.h @@ -195,7 +195,7 @@ namespace dsp { for (int i = 0; i < toProcess; i++) { level = 1e-4; for (int j = 0; j < sampleCount; j++) { - val = fabsf(buffer[i + j]) + val = fabsf(buffer[i + j]); if (val > level) { level = val; } } out.writeBuf[i] = buffer[i] / level; diff --git a/make_windows_package.ps1 b/make_windows_package.ps1 index dec2404..758fec7 100644 --- a/make_windows_package.ps1 +++ b/make_windows_package.ps1 @@ -33,6 +33,8 @@ cp build/file_source/Release/file_source.dll sdrpp_windows_x64/modules/ cp build/sdrplay_source/Release/sdrplay_source.dll sdrpp_windows_x64/modules/ +cp build/meteor_demodulator/Release/meteor_demodulator.dll sdrpp_windows_x64/modules/ + cp build/audio_sink/Release/audio_sink.dll sdrpp_windows_x64/modules/ cp "C:/Program Files (x86)/RtAudio/bin/rtaudio.dll" sdrpp_windows_x64/