mirror of
https://github.com/RPCSX/rpcsx.git
synced 2026-04-04 22:19:02 +00:00
Savestates: Compressed state files
This commit is contained in:
parent
91dbd92193
commit
f60bdbaece
27 changed files with 1377 additions and 370 deletions
|
|
@ -43,7 +43,7 @@ struct trophy_context_t
|
|||
trophy_context_t() = default;
|
||||
|
||||
trophy_context_t(utils::serial& ar)
|
||||
: trp_name(ar.operator std::string())
|
||||
: trp_name(ar.pop<std::string>())
|
||||
{
|
||||
std::string trophy_path = vfs::get(Emu.GetDir() + "TROPDIR/" + trp_name + "/TROPHY.TRP");
|
||||
fs::file trp_stream(trophy_path);
|
||||
|
|
@ -55,7 +55,7 @@ struct trophy_context_t
|
|||
trp_stream.open(trophy_path);
|
||||
}
|
||||
|
||||
if (!ar.operator bool())
|
||||
if (!ar.pop<bool>())
|
||||
{
|
||||
ar(read_only);
|
||||
return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue