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;