From a260143b682d5f70e3184108ba9646e4fd6fd174 Mon Sep 17 00:00:00 2001 From: morkt Date: Sat, 24 Sep 2016 14:00:09 +0400 Subject: [PATCH] (YpfOpener.DecryptYstb): updated supported version. --- ArcFormats/YuRis/ArcYPF.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ArcFormats/YuRis/ArcYPF.cs b/ArcFormats/YuRis/ArcYPF.cs index 7b34d3b9..18b1db42 100644 --- a/ArcFormats/YuRis/ArcYPF.cs +++ b/ArcFormats/YuRis/ArcYPF.cs @@ -354,7 +354,7 @@ namespace GameRes.Formats.YuRis uint* header = (uint*)raw; uint version = header[1]; int first_item, last_item; - if (version >= 0x1D9) + if (version >= 0x1CE) { first_item = 3; last_item = 7;