mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 20:04:13 +08:00
Merge branch 'master' of https://github.com/crskycode/GARbro
This commit is contained in:
commit
c40996a775
@ -73,10 +73,9 @@ namespace GameRes.Formats.Emote
|
|||||||
var match = PathRe.Match (line);
|
var match = PathRe.Match (line);
|
||||||
if (!match.Success)
|
if (!match.Success)
|
||||||
return null;
|
return null;
|
||||||
var pak_name = match.Groups[1].Value;
|
var pak_name = VFS.CombinePath (dir, match.Groups[1].Value);
|
||||||
if (!VFS.FileExists (pak_name))
|
if (!VFS.FileExists (pak_name))
|
||||||
return null;
|
return null;
|
||||||
pak_name = VFS.CombinePath (dir, pak_name);
|
|
||||||
layers.Add (Tuple.Create (pak_name, match.Groups[2].Value));
|
layers.Add (Tuple.Create (pak_name, match.Groups[2].Value));
|
||||||
}
|
}
|
||||||
if (0 == layers.Count)
|
if (0 == layers.Count)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user