Reflow tabs

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

View file

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