Browse Source

fixed default fg color on windows

master
Robin Thoni 7 years ago
parent
commit
57fd5d1a06
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      uqac-ia-aspirobot/UI/UiConsole.cs

+ 1
- 1
uqac-ia-aspirobot/UI/UiConsole.cs View File

83
         {
83
         {
84
             if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
84
             if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
85
             {
85
             {
86
-                Console.ForegroundColor = color.GetValueOrDefault(ConsoleColor.Black);
86
+                Console.ForegroundColor = color.GetValueOrDefault(ConsoleColor.White);
87
             }
87
             }
88
             else
88
             else
89
             {
89
             {

Loading…
Cancel
Save