diff --git a/DatSplit/DatSplit.cs b/DatSplit/DatSplit.cs index 8c410dcf..7147bba8 100644 --- a/DatSplit/DatSplit.cs +++ b/DatSplit/DatSplit.cs @@ -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) { diff --git a/Deheader/Headerer.cs b/Deheader/Headerer.cs index ec5de486..0ef2a645 100644 --- a/Deheader/Headerer.cs +++ b/Deheader/Headerer.cs @@ -32,6 +32,8 @@ Options: /// String array representing command line parameters static void Main(string[] args) { + Console.Title = "Headerer " + Build.Version; + // Type mapped to header size (in decimal bytes) types = new Dictionary(); types.Add("a7800", 128); diff --git a/SingleGame/SingleGame.cs b/SingleGame/SingleGame.cs index 51ae0aa1..55f42de4 100644 --- a/SingleGame/SingleGame.cs +++ b/SingleGame/SingleGame.cs @@ -17,6 +17,8 @@ namespace SabreTools public static void Main(string[] args) { + Console.Title = "SingleGame " + Build.Version; + if (args.Length != 1) { Help();