summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorcadmic <cadmic24@gmail.com>2024-02-27 11:08:20 -0800
committerGitHub <noreply@github.com>2024-02-27 14:08:20 -0500
commit350b82c6755bc317fea184e4d769c8884f98c8aa (patch)
treee9904f91f36db480dc89be0d066d9e313f32194b /include
parentdcf61174e90725bea9aeeae9176fd377e0358188 (diff)
Restore terminal colors in retail, except in __osMalloc.c (#1899)
Diffstat (limited to 'include')
-rw-r--r--include/terminal.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/include/terminal.h b/include/terminal.h
index 99213b179..f4ed8d610 100644
--- a/include/terminal.h
+++ b/include/terminal.h
@@ -28,24 +28,12 @@
#define VT_SGR(n) VT_ESC VT_CSI n "m"
// Add more macros if necessary
-#if OOT_DEBUG
-
#define VT_COL(back, fore) VT_SGR(VT_COLOR(BACKGROUND, back) ";" VT_COLOR(FOREGROUND, fore))
#define VT_FGCOL(color) VT_SGR(VT_COLOR(FOREGROUND, color))
#define VT_BGCOL(color) VT_SGR(VT_COLOR(BACKGROUND, color))
#define VT_RST VT_SGR("")
#define VT_CLS VT_ED(2)
-#else
-
-#define VT_COL(back, fore) ""
-#define VT_FGCOL(color) ""
-#define VT_BGCOL(color) ""
-#define VT_RST ""
-#define VT_CLS ""
-
-#endif
-
// ASCII BEL character, plays an alert tone
#define BEL '\a'