From 0088f6d3a74ee57833d69754dba2087ff77ab3ca Mon Sep 17 00:00:00 2001 From: Crsky Date: Tue, 29 Apr 2025 08:27:01 +0800 Subject: [PATCH] Update ArcTAC.cs --- ArcFormats/TanukiSoft/ArcTAC.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ArcFormats/TanukiSoft/ArcTAC.cs b/ArcFormats/TanukiSoft/ArcTAC.cs index ec4cc8b9..3ebce145 100644 --- a/ArcFormats/TanukiSoft/ArcTAC.cs +++ b/ArcFormats/TanukiSoft/ArcTAC.cs @@ -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;