Qt: Set default audio buffer size to 2048 to ensure smoothness on as many platforms as possible

This commit is contained in:
Jeffrey Pfau 2014-12-10 17:21:32 -08:00
parent 6d23328bda
commit 8cf1e449f0
1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ ConfigController::ConfigController(QObject* parent)
m_opts.audioSync = GameController::AUDIO_SYNC;
m_opts.videoSync = GameController::VIDEO_SYNC;
m_opts.fpsTarget = 60;
m_opts.audioBuffers = 768;
m_opts.audioBuffers = 2048;
GBAConfigLoadDefaults(&m_config, &m_opts);
GBAConfigLoad(&m_config);
GBAConfigMap(&m_config, &m_opts);