Don't set framesPerCallback for main stream as per oboe guidance

It's best to let oboe figure it out on it's own
This commit is contained in:
Billy Laws 2022-08-31 20:40:03 +01:00
parent b00008daf5
commit 8917ec9c88

View File

@ -8,7 +8,6 @@ namespace skyline::audio {
builder.setChannelCount(constant::StereoChannelCount);
builder.setSampleRate(constant::SampleRate);
builder.setFormat(constant::PcmFormat);
builder.setFramesPerCallback(constant::MixBufferSize);
builder.setUsage(oboe::Usage::Game);
builder.setCallback(this);
builder.setSharingMode(oboe::SharingMode::Exclusive);