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