diff --git a/ArcFormats/FC01/ArcPAK.cs b/ArcFormats/FC01/ArcPAK.cs index 035397ec..72a66c3f 100644 --- a/ArcFormats/FC01/ArcPAK.cs +++ b/ArcFormats/FC01/ArcPAK.cs @@ -166,7 +166,8 @@ namespace GameRes.Formats.FC01 protected IDictionary QueryScheme (ArcView file) { - var title = FormatCatalog.Instance.LookupGame (file.Name, @"..\*.sb"); + var title = FormatCatalog.Instance.LookupGame (file.Name, "*.sb") + ?? FormatCatalog.Instance.LookupGame (file.Name, @"..\*.sb"); if (string.IsNullOrEmpty (title) || !KnownSchemes.ContainsKey (title)) return null; return KnownSchemes[title];