diff --git a/src/RageSoundReader_Preload.cpp b/src/RageSoundReader_Preload.cpp index c6a313835c..c0a2253dd1 100644 --- a/src/RageSoundReader_Preload.cpp +++ b/src/RageSoundReader_Preload.cpp @@ -13,7 +13,7 @@ Preference g_bSoundPreload16bit( "SoundPreload16bit", true ); /* If a sound is smaller than this, we'll load it entirely into memory. */ -Preference g_iSoundPreloadMaxSamples( "SoundPreloadMaxSamples", 128*1024 ); +Preference g_iSoundPreloadMaxSamples( "SoundPreloadMaxSamples", 1024*1024 ); #define samplesize (m_bBufferIs16Bit? sizeof(int16_t):sizeof(float)) #define framesize (samplesize * m_iChannels)