mirror of
https://github.com/lifegpc/GARbro.git
synced 2026-06-06 05:28:49 +08:00
fixed reference to deleted field.
This commit is contained in:
@@ -361,12 +361,9 @@ namespace GameRes.Formats.Lucifen
|
||||
if (null == options)
|
||||
return DefaultScheme;
|
||||
string title = options.Scheme;
|
||||
if (null == options.Key)
|
||||
{
|
||||
Dictionary<string, Key> file_map = null;
|
||||
if (KnownKeys.TryGetValue (title, out file_map))
|
||||
CurrentFileMap = new Dictionary<string, Key> (file_map);
|
||||
}
|
||||
Dictionary<string, Key> file_map;
|
||||
if (KnownKeys.TryGetValue (title, out file_map))
|
||||
CurrentFileMap = new Dictionary<string, Key> (file_map);
|
||||
return KnownSchemes[title];
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user