Explorar el Código

resize buffer size to 16k instead of 32k

mikymod hace 12 años
padre
commit
61ee18f174
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      engine/audio/OggDecoder.h

+ 1 - 1
engine/audio/OggDecoder.h

@@ -32,7 +32,7 @@ OTHER DEALINGS IN THE SOFTWARE.
 #include "Types.h"
 #include "Assert.h"
 
-#define SOUND_STREAM_BUFFER_SIZE (4096 * 8) // 32K... should be tested
+#define SOUND_STREAM_BUFFER_SIZE (4096 * 4) // 32K... should be tested
 
 namespace crown
 {