From d522104ad019bdde2c5ae51bd6a466c71d4db951 Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Sun, 8 Jul 2018 10:31:41 +0900 Subject: [PATCH] Fix console styles --- libnxGen.cfg | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/libnxGen.cfg b/libnxGen.cfg index 3961cae..e057598 100644 --- a/libnxGen.cfg +++ b/libnxGen.cfg @@ -343,15 +343,15 @@ template CONSOLE_CYAN*: string = CONSOLE_ESC("36;1m") template CONSOLE_WHITE*: string = CONSOLE_ESC("37;1m") # Styles -template CONSOLE_COLOR_BOLD*: int = BIT(0) -template CONSOLE_COLOR_FAINT*: int = BIT(1) -template CONSOLE_ITALIC*: int = BIT(2) -template CONSOLE_UNDERLINE*: int = BIT(3) -template CONSOLE_BLINK_SLOW*: int = BIT(4) -template CONSOLE_BLINK_FAST*: int = BIT(5) -template CONSOLE_COLOR_REVERSE*: int = BIT(6) -template CONSOLE_CONCEAL*: int = BIT(7) -template CONSOLE_CROSSED_OUT*: int = BIT(8) +template CONSOLE_COLOR_BOLD*: int = BIT(0).int +template CONSOLE_COLOR_FAINT*: int = BIT(1).int +template CONSOLE_ITALIC*: int = BIT(2).int +template CONSOLE_UNDERLINE*: int = BIT(3).int +template CONSOLE_BLINK_SLOW*: int = BIT(4).int +template CONSOLE_BLINK_FAST*: int = BIT(5).int +template CONSOLE_COLOR_REVERSE*: int = BIT(6).int +template CONSOLE_CONCEAL*: int = BIT(7).int +template CONSOLE_CROSSED_OUT*: int = BIT(8).int """