mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-03 05:21:25 +12:00
Savestates: Fix compressed serialization handler deadlock
This commit is contained in:
parent
57ee3c6a6d
commit
fbeaa1c487
1 changed files with 1 additions and 1 deletions
|
@ -288,7 +288,7 @@ bool compressed_serialization_file_handler::handle_file_op(utils::serial& ar, us
|
||||||
{
|
{
|
||||||
v &= ~(1ull << 63);
|
v &= ~(1ull << 63);
|
||||||
|
|
||||||
if (v + ar.data.size() > 0x400'0000)
|
if (v > 0x400'0000)
|
||||||
{
|
{
|
||||||
v |= 1ull << 63;
|
v |= 1ull << 63;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue