Dat151 progress

This commit is contained in:
dexy
2018-12-25 14:55:46 +11:00
Unverified
parent 3bfe19bf80
commit df34b6f614
2 changed files with 327 additions and 39 deletions
+7 -4
View File
@@ -2216,11 +2216,14 @@ namespace CodeWalker.GameFiles
{
if (data.Length != rbfe.FileUncompressedSize)
{ }
if (data.Length != rel.RawFileData.Length)
else if (data.Length != rel.RawFileData.Length)
{ }
for (int i = 0; i < data.Length; i++) //raw file test
if (data[i] != rel.RawFileData[i])
{ }
else
{
for (int i = 0; i < data.Length; i++) //raw file test
if (data[i] != rel.RawFileData[i])
{ }
}
}