Timers scaling and fixes

This commit is contained in:
Eladash 2019-07-14 06:55:11 +03:00 committed by Ani
parent d17be2c2ec
commit 85b1152e29
27 changed files with 160 additions and 162 deletions

View file

@ -11,7 +11,7 @@
LOG_CHANNEL(sysPrxForUser);
extern u64 get_system_time();
extern u64 get_guest_system_time();
vm::gvar<s32> sys_prx_version; // ???
vm::gvar<vm::ptr<void()>> g_ppu_atexitspawn;
@ -22,7 +22,7 @@ s64 sys_time_get_system_time()
{
sysPrxForUser.trace("sys_time_get_system_time()");
return get_system_time();
return get_guest_system_time();
}
void sys_process_exit(ppu_thread& ppu, s32 status)