From 83abe1fb15e2ad290c9e0b0e484d49dbc123005b Mon Sep 17 00:00:00 2001 From: florian Date: Mon, 20 May 2024 20:43:14 +0200 Subject: [PATCH] * oc_blue properly named as noted by Don Siders --- compiler/comphook.pas | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/comphook.pas b/compiler/comphook.pas index 686719d6e7..4ee743cfec 100644 --- a/compiler/comphook.pas +++ b/compiler/comphook.pas @@ -183,7 +183,7 @@ begin end; type - TOutputColor = (oc_black,oc_red,oc_green,oc_orange,og_blue,oc_magenta,oc_cyan,oc_lightgray); + TOutputColor = (oc_black,oc_red,oc_green,oc_orange,oc_blue,oc_magenta,oc_cyan,oc_lightgray); procedure WriteColoredOutput(var t: Text;color: TOutputColor;const s : AnsiString); begin @@ -198,7 +198,7 @@ procedure WriteColoredOutput(var t: Text;color: TOutputColor;const s : AnsiStrin write(t,#27'[1m'#27'[32m'); oc_orange: write(t,#27'[1m'#27'[33m'); - og_blue: + oc_blue: write(t,#27'[1m'#27'[34m'); oc_magenta: write(t,#27'[1m'#27'[35m');