Skip to content

Commit

Permalink
[APT] Make logs slightly less cluttered for better debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
wheremyfoodat authored Feb 2, 2024
1 parent 74ea66e commit b256c89
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/services/apt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ void APTService::appletUtility(u32 messagePointer) {
u32 outputSize = mem.read32(messagePointer + 12);
u32 inputPointer = mem.read32(messagePointer + 20);

log("APT::AppletUtility(utility = %d, input size = %x, output size = %x, inputPointer = %08X) (Stubbed)\n", utility, inputSize, outputSize,
log("APT::AppletUtility(utility = %d, input size = %x, output size = %x, inputPointer = %08X)\n", utility, inputSize, outputSize,
inputPointer);

std::vector<u8> out(outputSize);
Expand Down Expand Up @@ -218,7 +218,7 @@ void APTService::initialize(u32 messagePointer) {
}

void APTService::inquireNotification(u32 messagePointer) {
log("APT::InquireNotification (STUBBED TO RETURN NONE)\n");
log("APT::InquireNotification\n");

mem.write32(messagePointer, IPC::responseHeader(0xB, 2, 0));
mem.write32(messagePointer + 4, Result::Success);
Expand Down

0 comments on commit b256c89

Please sign in to comment.