mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-07 22:55:40 +12:00
Fix derp
This commit is contained in:
parent
2a5da7c1b2
commit
c3160b6b1b
1 changed files with 2 additions and 1 deletions
|
@ -632,7 +632,7 @@ namespace Audio {
|
||||||
AAC::Message response;
|
AAC::Message response;
|
||||||
|
|
||||||
switch (request.command) {
|
switch (request.command) {
|
||||||
case AAC::Command::EncodeDecode:
|
case AAC::Command::EncodeDecode: {
|
||||||
// Dummy response to stop games from hanging
|
// Dummy response to stop games from hanging
|
||||||
response.resultCode = AAC::ResultCode::Success;
|
response.resultCode = AAC::ResultCode::Success;
|
||||||
response.decodeResponse.channelCount = 2;
|
response.decodeResponse.channelCount = 2;
|
||||||
|
@ -649,6 +649,7 @@ namespace Audio {
|
||||||
aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
case AAC::Command::Init:
|
case AAC::Command::Init:
|
||||||
case AAC::Command::Shutdown:
|
case AAC::Command::Shutdown:
|
||||||
|
|
Loading…
Add table
Reference in a new issue