From 605624bdc6e21fc2b86999dd906356876b74234e Mon Sep 17 00:00:00 2001 From: morkt Date: Mon, 6 Feb 2017 03:20:12 +0400 Subject: [PATCH] (PSB): look for layers if textures not found. --- ArcFormats/Emote/ArcPSB.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ArcFormats/Emote/ArcPSB.cs b/ArcFormats/Emote/ArcPSB.cs index f7d376e4..2b8565ce 100644 --- a/ArcFormats/Emote/ArcPSB.cs +++ b/ArcFormats/Emote/ArcPSB.cs @@ -77,6 +77,8 @@ namespace GameRes.Formats.Emote if (reader.Parse (key)) { var dir = reader.GetTextures(); + if (null == dir) + dir = reader.GetLayers(); if (null == dir || 0 == dir.Count) return null; return new ArcFile (file, this, dir);