浏览代码

SDL_n3dsaudio.h: use triple buffering

ds-sloth 1 年之前
父节点
当前提交
070f57820f
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/audio/n3ds/SDL_n3dsaudio.h

+ 1 - 1
src/audio/n3ds/SDL_n3dsaudio.h

@@ -27,7 +27,7 @@
 /* Hidden "this" pointer for the audio functions */
 /* Hidden "this" pointer for the audio functions */
 #define _THIS SDL_AudioDevice *this
 #define _THIS SDL_AudioDevice *this
 
 
-#define NUM_BUFFERS 2 /* -- Don't lower this! */
+#define NUM_BUFFERS 3 /* -- Minimum 2! */
 
 
 struct SDL_PrivateAudioData
 struct SDL_PrivateAudioData
 {
 {