mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-08 23:25:40 +12:00
HLE DSP: Enable AAC by default
This commit is contained in:
parent
760c67c759
commit
70d93a1ad8
1 changed files with 2 additions and 2 deletions
|
@ -643,8 +643,8 @@ namespace Audio {
|
||||||
response.command = request.command;
|
response.command = request.command;
|
||||||
response.mode = request.mode;
|
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.
|
// TODO: Make this a toggle in config.toml. Currently we have it on by default.
|
||||||
constexpr bool enableAAC = false;
|
constexpr bool enableAAC = true;
|
||||||
if (enableAAC) {
|
if (enableAAC) {
|
||||||
aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue