mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 14:15:41 +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;
|
||||
|
||||
switch (request.command) {
|
||||
case AAC::Command::EncodeDecode:
|
||||
case AAC::Command::EncodeDecode: {
|
||||
// Dummy response to stop games from hanging
|
||||
response.resultCode = AAC::ResultCode::Success;
|
||||
response.decodeResponse.channelCount = 2;
|
||||
|
@ -649,6 +649,7 @@ namespace Audio {
|
|||
aacDecoder->decode(response, request, [this](u32 paddr) { return getPointerPhys<u8>(paddr); });
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
||||
case AAC::Command::Init:
|
||||
case AAC::Command::Shutdown:
|
||||
|
|
Loading…
Add table
Reference in a new issue