mirror of
https://github.com/SabreTools/SabreTools.Serialization.git
synced 2026-09-22 14:55:11 +00:00
Fix logic inversion issue
This commit is contained in:
@@ -97,7 +97,7 @@ namespace SabreTools.Serialization.Readers
|
||||
{
|
||||
// Cache data until NES 2.0 flag determined
|
||||
byte[] identificationString = data.ReadBytes(4);
|
||||
if (identificationString.EqualsExactly(SignatureBytes))
|
||||
if (!identificationString.EqualsExactly(SignatureBytes))
|
||||
return null;
|
||||
|
||||
byte prgRomSize = data.ReadByteValue();
|
||||
|
||||
Reference in New Issue
Block a user