mirror of
https://github.com/RPCS3/rpcs3.git
synced 2026-01-03 07:10:23 +01:00
Savestates: Fix compressed serialization handler deadlock
This commit is contained in:
parent
57ee3c6a6d
commit
fbeaa1c487
|
|
@ -288,7 +288,7 @@ bool compressed_serialization_file_handler::handle_file_op(utils::serial& ar, us
|
|||
{
|
||||
v &= ~(1ull << 63);
|
||||
|
||||
if (v + ar.data.size() > 0x400'0000)
|
||||
if (v > 0x400'0000)
|
||||
{
|
||||
v |= 1ull << 63;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue