Reflow tabs

This commit is contained in:
Jake 2022-02-21 00:17:56 +00:00
parent 77b693ae08
commit 3d0d7d052f

View file

@ -35,8 +35,8 @@ namespace LBPUnion.UnionPatcher {
public byte[] Contents { get; } = null;
public ElfFile(byte[] fileContents) {
if(fileContents.Length < 52)
return;
if(fileContents.Length < 52)
return;
IsValid = fileContents[0x00..0x04].SequenceEqual(new byte[] {0x7F, (byte)'E', (byte)'L', (byte)'F'});
if(!IsValid) return;