From 09c28f75b37ba262e58e85fe77b36076dc806981 Mon Sep 17 00:00:00 2001 From: Eladash Date: Wed, 6 Jul 2022 11:11:34 +0300 Subject: [PATCH] Savestates: Fix LV2 timers (fixes audio in some games) --- rpcs3/Emu/Cell/lv2/sys_timer.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/rpcs3/Emu/Cell/lv2/sys_timer.cpp b/rpcs3/Emu/Cell/lv2/sys_timer.cpp index dadda6c5e0..1e38c163dd 100644 --- a/rpcs3/Emu/Cell/lv2/sys_timer.cpp +++ b/rpcs3/Emu/Cell/lv2/sys_timer.cpp @@ -21,6 +21,8 @@ struct lv2_timer_thread void operator()(); + SAVESTATE_INIT_POS(46); // Dependency ion LV2 objects (lv2_timer) + static constexpr auto thread_name = "Timer Thread"sv; };