mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
fixed reference to deleted field.
This commit is contained in:
@@ -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;
|
||||||
{
|
if (KnownKeys.TryGetValue (title, out file_map))
|
||||||
Dictionary<string, Key> file_map = null;
|
CurrentFileMap = new Dictionary<string, Key> (file_map);
|
||||||
if (KnownKeys.TryGetValue (title, out file_map))
|
|
||||||
CurrentFileMap = new Dictionary<string, Key> (file_map);
|
|
||||||
}
|
|
||||||
return KnownSchemes[title];
|
return KnownSchemes[title];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user