mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-05 22:55:41 +13:00
More audio device
This commit is contained in:
parent
8e89f7f24e
commit
69afa2f87a
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ class LibretroAudioDevice : public AudioDeviceInterface {
|
|||
|
||||
void renderBatch(RenderBatchCallback callback) override {
|
||||
if (running) {
|
||||
static constexpr usize frameCount = maxFrameCount;
|
||||
static constexpr usize frameCount = 774;
|
||||
static constexpr usize channelCount = 2;
|
||||
static s16 audioBuffer[frameCount * channelCount];
|
||||
|
||||
|
@ -52,7 +52,7 @@ class LibretroAudioDevice : public AudioDeviceInterface {
|
|||
}
|
||||
}
|
||||
|
||||
callback(audioBuffer, sizeof(audioBuffer) / (2 * sizeof(s16)));
|
||||
callback(audioBuffer, sizeof(audioBuffer) / (channelCount * sizeof(s16)));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue