From 7b3693bb29942fff1180d13a96ea2fa1480a65e8 Mon Sep 17 00:00:00 2001 From: Jake Date: Fri, 21 Jul 2017 18:03:27 -0500 Subject: [PATCH] sys_timer: Fix initial timer state --- rpcs3/Emu/Cell/lv2/sys_timer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/Cell/lv2/sys_timer.h b/rpcs3/Emu/Cell/lv2/sys_timer.h index 591c2894fb..a3f2b8c831 100644 --- a/rpcs3/Emu/Cell/lv2/sys_timer.h +++ b/rpcs3/Emu/Cell/lv2/sys_timer.h @@ -25,7 +25,7 @@ struct lv2_timer final : public lv2_obj, public named_thread void on_stop() override; semaphore<> mutex; - atomic_t state{SYS_TIMER_STATE_RUN}; + atomic_t state{SYS_TIMER_STATE_STOP}; std::weak_ptr port; u64 source;