Adjust some logging.

Report logic op more correctly, cleanup an incorrect log.
This commit is contained in:
Unknown W. Brackets 2014-09-28 15:13:10 -07:00
parent 91eb8b7cb1
commit feada0ee65
3 changed files with 5 additions and 7 deletions

View file

@ -2559,7 +2559,7 @@ int sceKernelChangeCurrentThreadAttr(u32 clearAttr, u32 setAttr)
// Seems like this is the only allowed attribute?
if ((clearAttr & ~PSP_THREAD_ATTR_VFPU) != 0 || (setAttr & ~PSP_THREAD_ATTR_VFPU) != 0)
{
ERROR_LOG_REPORT(SCEKERNEL, "0 = sceKernelChangeCurrentThreadAttr(clear = %08x, set = %08x): invalid attr", clearAttr, setAttr);
ERROR_LOG_REPORT(SCEKERNEL, "sceKernelChangeCurrentThreadAttr(clear = %08x, set = %08x): invalid attr", clearAttr, setAttr);
return SCE_KERNEL_ERROR_ILLEGAL_ATTR;
}