From d8f3029952c03c4607dd6d86583c8d1f69f5c764 Mon Sep 17 00:00:00 2001 From: Eladash Date: Wed, 6 Jul 2022 11:14:35 +0300 Subject: [PATCH] Log LV2 periodic timers --- rpcs3/Emu/Cell/lv2/sys_timer.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_timer.cpp b/rpcs3/Emu/Cell/lv2/sys_timer.cpp index 1e38c163dd..429477b537 100644 --- a/rpcs3/Emu/Cell/lv2/sys_timer.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_timer.cpp @@ -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();