Added some more info in Debug Log to help debugging

This commit is contained in:
ANR2ME 2020-09-07 03:21:29 +07:00
parent 2040be06e1
commit b1d6f6aa48
2 changed files with 15 additions and 2 deletions

View file

@ -645,7 +645,7 @@ static u32 sceWlanGetSwitchState() {
// Probably a void function, but often returns a useful value.
static void sceNetEtherNtostr(u32 macPtr, u32 bufferPtr) {
DEBUG_LOG(SCENET, "sceNetEtherNtostr(%08x, %08x)", macPtr, bufferPtr);
DEBUG_LOG(SCENET, "sceNetEtherNtostr(%08x, %08x) at %08x", macPtr, bufferPtr, currentMIPS->pc);
if (Memory::IsValidAddress(bufferPtr) && Memory::IsValidAddress(macPtr)) {
char *buffer = (char *)Memory::GetPointer(bufferPtr);