Merge pull request #1 from chitao1234/master

Make console version buildable
This commit is contained in:
crsky 2021-08-07 19:28:46 +08:00 committed by GitHub
commit 2746d3697b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -67,6 +67,12 @@ namespace GARbro
*/ */
} }
ImageFormat FindFormat(string format)
{
var range = FormatCatalog.Instance.LookupExtension<ImageFormat>(format);
return range.FirstOrDefault();
}
void Run (string[] args) void Run (string[] args)
{ {
int argn = 0; int argn = 0;
@ -131,7 +137,7 @@ namespace GARbro
Console.Error.WriteLine ("{0}: unknown format", m_arc_name); Console.Error.WriteLine ("{0}: unknown format", m_arc_name);
continue; continue;
} }
var arc = (ArchiveFileSystem)VFS.Top; var arc = ((ArchiveFileSystem)VFS.Top).Source;
if (args.Length > argn+1) if (args.Length > argn+1)
{ {
for (int i = argn+1; i < args.Length; ++i) for (int i = argn+1; i < args.Length; ++i)