commit 7153063d5f0db92ac6539e839e5b289690a0f0c2 parent c0a33cd2aebd6562cbde57938de7208055556581 Author: dsp56300 <dsp56300@users.noreply.github.com> Date: Tue, 8 Oct 2024 20:53:05 +0200 fix generated reference files were twice as long as needed Diffstat:
M | source/virusIntegrationTest/integrationTest.cpp | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/source/virusIntegrationTest/integrationTest.cpp b/source/virusIntegrationTest/integrationTest.cpp @@ -292,7 +292,7 @@ int IntegrationTest::runCompare() int IntegrationTest::runCreate(const int _lengthSeconds) { - const auto sampleCount = m_app.getRom().getSamplerate() * _lengthSeconds * 2; + const auto sampleCount = m_app.getRom().getSamplerate() * _lengthSeconds; File file; return createAudioFile(file, "", sampleCount);