mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Use u64 for system_time_t, as s64 doesn't make much sense in a microsecond context.
This commit is contained in:
parent
ccb7528a59
commit
6b30cdac09
9 changed files with 38 additions and 28 deletions
|
|
@ -1351,7 +1351,7 @@ error_code cellRtcSetCurrentTick(vm::cptr<CellRtcTick> pTick)
|
|||
|
||||
// TODO syscall not implemented
|
||||
/*
|
||||
u32 tmp2 = sys_time_get_system_time(tmp / cellRtcGetTickResolution(), (tmp % cellRtcGetTickResolution()) * 1000);
|
||||
u64 tmp2 = sys_time_get_system_time(tmp / cellRtcGetTickResolution(), (tmp % cellRtcGetTickResolution()) * 1000);
|
||||
|
||||
return (tmp2 & (tmp2 | tmp2 - 1) >> 0x1f);
|
||||
*/
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue