mirror of
https://github.com/crskycode/GARbro.git
synced 2026-06-10 15:49:00 +08:00
GameRes refactoring.
(FormatCatalog.CreateEntry): method renamed to 'Create' and made generic towards Entry type.
This commit is contained in:
@@ -231,7 +231,7 @@ namespace GARbro.GUI
|
||||
if (file.Length >= uint.MaxValue)
|
||||
continue;
|
||||
string name = Path.Combine (path, file.Name);
|
||||
var e = FormatCatalog.Instance.CreateEntry (name);
|
||||
var e = FormatCatalog.Instance.Create<Entry> (name);
|
||||
e.Size = (uint)file.Length;
|
||||
list.Add (e);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user