(DziFormat.ReadMetaData): use VFS.CombinePath

This commit is contained in:
morkt
2016-05-20 04:05:31 +04:00
parent 65ec4ad7ee
commit 1bd3799372

View File

@@ -58,7 +58,7 @@ namespace GameRes.Formats.Malie
public override ImageMetaData ReadMetaData (Stream stream) public override ImageMetaData ReadMetaData (Stream stream)
{ {
var tex = VFS.FindFile ("tex"); var tex = VFS.FindFile (VFS.CombinePath (VFS.Top.CurrentDirectory, "tex"));
if (!(tex is SubDirEntry)) if (!(tex is SubDirEntry))
return null; return null;
using (var reader = new StreamReader (stream, Encoding.UTF8, false, 2048, true)) using (var reader = new StreamReader (stream, Encoding.UTF8, false, 2048, true))