Skip to content

Commit

Permalink
Don't default to a fixed color
Browse files Browse the repository at this point in the history
  • Loading branch information
shinnova committed Aug 14, 2019
1 parent 7ae8db0 commit 5502ca2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FFXIV_Modding_Tool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void PrintMessage(string message, int importance = 0)
Console.ForegroundColor = ConsoleColor.Yellow;
break;
default:
Console.ForegroundColor = ConsoleColor.White;
Console.ResetColor();
break;
}
Console.WriteLine(message);
Expand Down

0 comments on commit 5502ca2

Please sign in to comment.