From 54cc895d1f80e15830788e7e46e8d73cf79aaa73 Mon Sep 17 00:00:00 2001 From: scientificworld Date: Sat, 17 Jan 2026 10:13:16 +0800 Subject: [PATCH] fix: NPK version --- ArcFormats/NitroPlus/ArcNPK.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/NitroPlus/ArcNPK.cs b/ArcFormats/NitroPlus/ArcNPK.cs index 5e793a54..19e038d8 100644 --- a/ArcFormats/NitroPlus/ArcNPK.cs +++ b/ArcFormats/NitroPlus/ArcNPK.cs @@ -109,7 +109,7 @@ namespace GameRes.Formats.NitroPlus public override ArcFile TryOpen (ArcView file) { - int version = file.View.ReadByte (3); + int version = file.View.ReadByte (3) - '0'; int count = file.View.ReadInt32 (0x18); if (!IsSaneCount (count)) return null;