mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-11 00:25:41 +12:00
[DSP] Fix up warnings/logs
This commit is contained in:
parent
ccd7ef3a23
commit
378258ed0b
1 changed files with 5 additions and 1 deletions
|
@ -140,7 +140,7 @@ std::vector<u8> DSPService::readPipe(u32 pipe, u32 size) {
|
||||||
}
|
}
|
||||||
|
|
||||||
if (pipe != DSPPipeType::Audio) {
|
if (pipe != DSPPipeType::Audio) {
|
||||||
Helpers::warn("Reading from non-audio pipe! This might be broken, might need to check what pipe is being read from and implement writing to it\n");
|
log("Reading from non-audio pipe! This might be broken, might need to check what pipe is being read from and implement writing to it\n");
|
||||||
}
|
}
|
||||||
|
|
||||||
std::vector<u8>& data = pipeData[pipe];
|
std::vector<u8>& data = pipeData[pipe];
|
||||||
|
@ -322,6 +322,10 @@ void DSPService::writeProcessPipe(u32 messagePointer) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
case DSPPipeType::Binary:
|
||||||
|
Helpers::warn("Unimplemented write to binary pipe! Size: %d\n", size);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
log("DSP: Wrote to unimplemented pipe %d\n", channel);
|
log("DSP: Wrote to unimplemented pipe %d\n", channel);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Add table
Reference in a new issue