diff --git a/SabreTools.Library/Data/Build.cs b/SabreTools.Library/Data/Build.cs index 484bbaa7..0a5f708e 100644 --- a/SabreTools.Library/Data/Build.cs +++ b/SabreTools.Library/Data/Build.cs @@ -16,7 +16,7 @@ namespace SabreTools.Library.Data /// Readies the console and outputs the header /// /// The name to be displayed as the programB - public static void Start(string name) + public static void PrepareConsole(string name) { // Dynamically create the header string, adapted from http://stackoverflow.com/questions/8200661/how-to-align-string-in-fixed-length-string int width = Console.WindowWidth - 3; diff --git a/SabreTools/SabreTools.cs b/SabreTools/SabreTools.cs index 17b5f12e..2d5b85fd 100644 --- a/SabreTools/SabreTools.cs +++ b/SabreTools/SabreTools.cs @@ -45,7 +45,7 @@ namespace SabreTools if (!Console.IsOutputRedirected && scriptLocation == -1) { Console.Clear(); - Build.Start("SabreTools"); + Build.PrepareConsole("SabreTools"); } // Now we remove the script tag because it messes things up