This commit is contained in:
Matt Nadareski
2016-04-18 16:32:17 -07:00
parent 38f62683d9
commit cd958b7950
5 changed files with 43 additions and 0 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Generic;
using System.Data.SQLite;
using System.IO;
using System.IO.Compression;
@@ -42,6 +43,14 @@ namespace SabreTools
Console.SetBufferSize(Console.BufferWidth, 999);
Console.Title = "DATabase " + Build.Version;
// Credits take precidence over all
if ((new List<string>(args)).Contains("--credits"))
{
Build.Credits();
logger.Close();
return;
}
// If there's no arguments, show the menu
if (args.Length == 0)
{