Log LV2 periodic timers

This commit is contained in:
Eladash 2022-07-06 11:14:35 +03:00 committed by Ivan
parent 09c28f75b3
commit d8f3029952

View file

@ -225,7 +225,7 @@ error_code _sys_timer_start(ppu_thread& ppu, u32 timer_id, u64 base_time, u64 pe
{
ppu.state += cpu_flag::wait;
sys_timer.trace("_sys_timer_start(timer_id=0x%x, base_time=0x%llx, period=0x%llx)", timer_id, base_time, period);
(period ? sys_timer.warning : sys_timer.trace)("_sys_timer_start(timer_id=0x%x, base_time=0x%llx, period=0x%llx)", timer_id, base_time, period);
const u64 start_time = get_guest_system_time();