mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-04-21 03:55:32 +00:00
sys_timer: Fix initial timer state
This commit is contained in:
parent
df8fa74e2a
commit
7b3693bb29
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ struct lv2_timer final : public lv2_obj, public named_thread
|
|||
void on_stop() override;
|
||||
|
||||
semaphore<> mutex;
|
||||
atomic_t<u32> state{SYS_TIMER_STATE_RUN};
|
||||
atomic_t<u32> state{SYS_TIMER_STATE_STOP};
|
||||
|
||||
std::weak_ptr<lv2_event_queue> port;
|
||||
u64 source;
|
||||
|
|
Loading…
Add table
Reference in a new issue