This commit is contained in:
2025-01-30 12:53:12 +01:00
parent 66458e831c
commit e16eefa166
2 changed files with 8 additions and 5 deletions

View File

@@ -45,7 +45,7 @@ namespace AnotherReplayReader.ReplayFile
var lastByte = current.ReadBytes(size - 2).Last();
if (lastByte != 0xFF)
{
throw new InvalidDataException($"Failed to parse command {command:X}, last byte is {lastByte:X}");
// throw new InvalidDataException($"Failed to parse command {command:X}, last byte is {lastByte:X}");
}
};
}