From 170ab500b4093a07027c5adba7dbdcef73545822 Mon Sep 17 00:00:00 2001 From: Paul Ferrand Date: Sat, 30 Nov 2019 16:32:43 +0100 Subject: [PATCH] Reduce the default preloading size --- src/sfizz/Config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sfizz/Config.h b/src/sfizz/Config.h index 28aee001..9176f6e0 100644 --- a/src/sfizz/Config.h +++ b/src/sfizz/Config.h @@ -28,7 +28,7 @@ namespace sfz { namespace config { constexpr float defaultSampleRate { 48000 }; constexpr int defaultSamplesPerBlock { 1024 }; - constexpr int preloadSize { 8192 * 4 }; + constexpr int preloadSize { 8192 }; constexpr int numChannels { 2 }; constexpr int numVoices { 64 }; constexpr int sustainCC { 64 };