More audio device

This commit is contained in:
wheremyfoodat 2025-02-09 04:44:53 +02:00
parent 2d85e79d12
commit 8e89f7f24e

View file

@ -28,8 +28,8 @@ class LibretroAudioDevice : public AudioDeviceInterface {
void renderBatch(RenderBatchCallback callback) override {
if (running) {
static constexpr int frameCount = maxFrameCount;
static constexpr int channelCount = 2;
static constexpr usize frameCount = maxFrameCount;
static constexpr usize channelCount = 2;
static s16 audioBuffer[frameCount * channelCount];
usize samplesWritten = 0;