Skip to content

Commit

Permalink
Fixup sys_rsxaudio savestates
Browse files Browse the repository at this point in the history
  • Loading branch information
elad335 committed Oct 3, 2023
1 parent 1505698 commit a220fe5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/Emu/Cell/lv2/sys_rsxaudio.cpp
Expand Up @@ -113,7 +113,7 @@ lv2_rsxaudio::lv2_rsxaudio(utils::serial& ar) noexcept

for (const auto& port : event_queue)
{
lv2_event_queue::save_ptr(ar, port.get());
port = lv2_event_queue::load_ptr(ar, port, "rsxaudio");
}
}
}
Expand All @@ -130,7 +130,7 @@ void lv2_rsxaudio::save(utils::serial& ar)

for (auto& port : event_queue)
{
port = lv2_event_queue::load_ptr(ar, port, "rsxaudio");
lv2_event_queue::save_ptr(ar, port.get());
}
}
}
Expand Down

0 comments on commit a220fe5

Please sign in to comment.