Result logging restored

This commit is contained in:
Nekotekina 2015-02-25 15:08:22 +03:00
parent 0b21474b79
commit 9afdb429fa
2 changed files with 16 additions and 0 deletions

View file

@ -946,6 +946,11 @@ void SysCalls::DoSyscall(PPUThread& CPU, u64 code)
sc_table[code](CPU);
if (Ini.HLELogging.GetValue())
{
LOG_NOTICE(PPU, "SysCall finished: %s [0x%llx] -> 0x%llx", "unknown", code, CPU.GPR[3]);
}
CPU.m_last_syscall = old_last_syscall;
}