diff options
| author | ZuBsPaCe | 2015-11-19 14:27:58 +0100 |
|---|---|---|
| committer | ZuBsPaCe | 2015-11-19 15:19:20 +0100 |
| commit | a89c86193161797c59165799232b6aeba6076760 (patch) | |
| tree | 862541c6f1f19a8360959fe3efedb0c9c0ab597f /platform | |
| parent | 9f9452d023444bbc27d88dbbdf55f93c6678c9a4 (diff) | |
| download | godot-a89c86193161797c59165799232b6aeba6076760.tar.gz godot-a89c86193161797c59165799232b6aeba6076760.tar.zst godot-a89c86193161797c59165799232b6aeba6076760.zip | |
Set output color of ERR_SCRIPT messages to purple. Same as on linux.
Diffstat (limited to 'platform')
| -rw-r--r-- | platform/windows/os_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index fa9cba9d2..d919485e7 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -1802,7 +1802,7 @@ void OS_Windows::print_error(const char* p_function, const char* p_file, int p_l switch(p_type) { case ERR_ERROR: basecol = FOREGROUND_RED; break; case ERR_WARNING: basecol = FOREGROUND_RED | FOREGROUND_GREEN; break; - case ERR_SCRIPT: basecol = FOREGROUND_GREEN; break; + case ERR_SCRIPT: basecol = FOREGROUND_RED | FOREGROUND_BLUE; break; } if (p_rationale && p_rationale[0]) { |
