From 899dde429a7c58f15d6a9f89c5747faf8d883c12 Mon Sep 17 00:00:00 2001 From: Sean Kelly Date: Mon, 3 Feb 2025 20:06:45 -0800 Subject: [PATCH] Fix typo --- web/emscripten/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/emscripten/main.cpp b/web/emscripten/main.cpp index 1a0bcd6..d6f2e41 100644 --- a/web/emscripten/main.cpp +++ b/web/emscripten/main.cpp @@ -44,7 +44,7 @@ extern "C" { stretch.presetDefault(nChannels, sampleRate); } void EMSCRIPTEN_KEEPALIVE presetCheaper(int nChannels, Sample sampleRate) { - stretch.presetDefault(nChannels, sampleRate); + stretch.presetCheaper(nChannels, sampleRate); } void EMSCRIPTEN_KEEPALIVE configure(int nChannels, int blockSamples, int intervalSamples) { stretch.configure(nChannels, blockSamples, intervalSamples);