mistake sceRtcGetLastAdjustedTime() is not UNIMPL function.

revert  to DEBUG_LOG from  ERROR_LOG.
This commit is contained in:
nachume 2013-04-29 14:52:36 +09:00
parent aa1c546a3e
commit c89589c27d

View File

@ -802,7 +802,7 @@ int sceRtcGetLastAdjustedTime(u32 tickPtr)
u64 curTick = __RtcGetCurrentTick();
if (Memory::IsValidAddress(tickPtr))
Memory::Write_U64(curTick, tickPtr);
ERROR_LOG(HLE, "sceRtcGetLastAdjustedTime(%d)", tickPtr);
DEBUG_LOG(HLE, "sceRtcGetLastAdjustedTime(%d)", tickPtr);
return 0;
}