From 28c67b93847cfe953205111f4d2fcedd8b10e3bb Mon Sep 17 00:00:00 2001 From: Margen67 Date: Mon, 12 Jun 2023 07:21:44 -0700 Subject: [PATCH] [APU] Add apu_ prefix to max_queued_frames cvar Also add note about the minimum value. --- src/xenia/apu/audio_system.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/xenia/apu/audio_system.cc b/src/xenia/apu/audio_system.cc index ea44f065a..ef4feb29b 100644 --- a/src/xenia/apu/audio_system.cc +++ b/src/xenia/apu/audio_system.cc @@ -35,8 +35,8 @@ // implementations. They can be found in xboxkrnl_audio_xma.cc DEFINE_uint32( - max_queued_frames, 64, - "Allows changing max buffered audio frames to reduce audio delay.", "APU"); + apu_max_queued_frames, 64, + "Allows changing max buffered audio frames to reduce audio delay. Minimum is 16.", "APU"); namespace xe { namespace apu { @@ -46,7 +46,7 @@ AudioSystem::AudioSystem(cpu::Processor* processor) processor_(processor), worker_running_(false) { std::memset(clients_, 0, sizeof(clients_)); - queued_frames_ = std::max(cvars::max_queued_frames, (uint32_t)16); + queued_frames_ = std::max(cvars::apu_max_queued_frames, (uint32_t)16); for (size_t i = 0; i < kMaximumClientCount; ++i) { client_semaphores_[i] = xe::threading::Semaphore::Create(0, queued_frames_);