Update ArcTAC.cs

This commit is contained in:
Crsky
2025-04-29 08:27:01 +08:00
committed by GitHub
parent 9e6569c12f
commit 0088f6d3a7

View File

@@ -58,7 +58,7 @@ namespace GameRes.Formats.Tanuki
version = 100;
else if (file.View.AsciiEqual (4, "1.10"))
version = 110;
else if (file.View.AsciiEqual(4, "1.20"))
else if (file.View.AsciiEqual (4, "1.20"))
version = 120;
else
return null;
@@ -79,7 +79,7 @@ namespace GameRes.Formats.Tanuki
index_offset = 0x2C;
break;
case 120:
index_offset = 0x30 + file.View.ReadUInt32(0x2C);
index_offset = 0x30 + file.View.ReadUInt32 (0x2C);
break;
};
long base_offset = index_offset + index_size;