LLE logging

This commit is contained in:
Nekotekina 2015-02-25 14:24:30 +03:00
parent 0e33636aaf
commit 432f0c3630

View File

@ -97,6 +97,11 @@ void execute_ppu_func_by_index(PPUThread& CPU, u32 index)
if (func->lle_func && !(func->flags & MFF_FORCED_HLE))
{
// call LLE function if available
if (Ini.HLELogging.GetValue())
{
LOG_NOTICE(HLE, "LLE function called: %s", SysCalls::GetHLEFuncName(func->id));
}
func->lle_func(CPU);
}
else if (func->func)