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 """