Add console titles

This commit is contained in:
Matt Nadareski
2016-04-06 00:35:39 -07:00
parent 97ee13681b
commit 81cfbb0640
3 changed files with 6 additions and 0 deletions

View File

@@ -17,6 +17,8 @@ namespace DatSplit
public static void Main(string[] args)
{
Console.Title = "DatSplit " + Build.Version;
// If we don't have arguments, show help
if (args.Length == 0 && args.Length != 3)
{

View File

@@ -32,6 +32,8 @@ Options:
/// <param name="args">String array representing command line parameters</param>
static void Main(string[] args)
{
Console.Title = "Headerer " + Build.Version;
// Type mapped to header size (in decimal bytes)
types = new Dictionary<string, int>();
types.Add("a7800", 128);

View File

@@ -17,6 +17,8 @@ namespace SabreTools
public static void Main(string[] args)
{
Console.Title = "SingleGame " + Build.Version;
if (args.Length != 1)
{
Help();