Skip to content

Commit

Permalink
Changed console text color to white
Browse files Browse the repository at this point in the history
  • Loading branch information
DartPower committed Jun 2, 2019
1 parent 62cd547 commit ac8a3ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ static void Main(string[] args)
Marshal.PrelinkAll(typeof(Program));
Process currentProcess = Process.GetCurrentProcess();
currentProcess.PriorityClass = ProcessPriorityClass.High;
Console.BackgroundColor = ConsoleColor.Black;
Console.ForegroundColor = ConsoleColor.White;
try
{
const string ClientPath = @"\Instances\DPT\";
Expand Down

0 comments on commit ac8a3ed

Please sign in to comment.