mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-08-04 08:22:32 +00:00
liverpool: Relax binary header validity check
This commit is contained in:
parent
4da373f208
commit
84700588db
@ -83,8 +83,7 @@ struct Liverpool {
|
|||||||
u32 crc32;
|
u32 crc32;
|
||||||
|
|
||||||
bool Valid() const {
|
bool Valid() const {
|
||||||
return shader_hash && crc32 &&
|
return std::memcmp(signature.data(), signature_ref, sizeof(signature_ref)) == 0;
|
||||||
(std::memcmp(signature.data(), signature_ref, sizeof(signature_ref)) == 0);
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user