1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-26 12:42:41 +01:00

cellSaveData: Add missing SDK version check for setParam->reserved2 check

This commit is contained in:
eladash 2019-04-20 21:05:30 +03:00 committed by Ani
parent ae5a4b697e
commit 450e2c9a0e

View File

@ -803,12 +803,15 @@ static NEVER_INLINE error_code savedata_op(ppu_thread& ppu, u32 operation, u32 v
return CELL_SAVEDATA_ERROR_PARAM;
}
for (u8 resv : statSet->setParam->reserved2)
if (g_ps3_sdk_version > 0x36FFFF)
{
if (resv)
for (u8 resv : statSet->setParam->reserved2)
{
// ****** sysutil savedata parameter error : 58 ******
return CELL_SAVEDATA_ERROR_PARAM;
if (resv)
{
// ****** sysutil savedata parameter error : 58 ******
return CELL_SAVEDATA_ERROR_PARAM;
}
}
}