From 70d93a1ad8b55a69a78c7afabcb5743359d9834a Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sat, 2 Nov 2024 21:58:27 +0200 Subject: [PATCH] HLE DSP: Enable AAC by default --- src/core/audio/hle_core.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/audio/hle_core.cpp b/src/core/audio/hle_core.cpp index 70a8e71d..85eee97a 100644 --- a/src/core/audio/hle_core.cpp +++ b/src/core/audio/hle_core.cpp @@ -643,8 +643,8 @@ namespace Audio { response.command = request.command; response.mode = request.mode; - // TODO: Make this a toggle in config.toml. Currently we have it off by default until we finish the DSP mixer. - constexpr bool enableAAC = false; + // TODO: Make this a toggle in config.toml. Currently we have it on by default. + constexpr bool enableAAC = true; if (enableAAC) { aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys(paddr); }); }