liverpool: Relax binary header validity check

This commit is contained in:
IndecisiveTurtle 2025-02-24 11:43:48 +02:00
parent 4da373f208
commit 84700588db

View file

@ -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;
}
};