mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-04-20 11:35:45 +00:00
liverpool: Relax binary header validity check
This commit is contained in:
parent
4da373f208
commit
84700588db
1 changed files with 1 additions and 2 deletions
|
@ -83,8 +83,7 @@ struct Liverpool {
|
|||
u32 crc32;
|
||||
|
||||
bool Valid() const {
|
||||
return shader_hash && crc32 &&
|
||||
(std::memcmp(signature.data(), signature_ref, sizeof(signature_ref)) == 0);
|
||||
return std::memcmp(signature.data(), signature_ref, sizeof(signature_ref)) == 0;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue