Savestates: Compressed state files

This commit is contained in:
Eladash 2023-11-15 21:07:42 +02:00 committed by Elad Ashkenazi
parent 91dbd92193
commit f60bdbaece
27 changed files with 1377 additions and 370 deletions

View file

@ -12,10 +12,10 @@
LOG_CHANNEL(sys_lwcond);
lv2_lwcond::lv2_lwcond(utils::serial& ar)
: name(ar.operator be_t<u64>())
: name(ar.pop<be_t<u64>>())
, lwid(ar)
, protocol(ar)
, control(ar.operator decltype(control)())
, control(ar.pop<decltype(control)>())
{
}