Fix console styles

This commit is contained in:
Joey Yakimowich-Payne 2018-07-08 10:31:41 +09:00
commit d522104ad0

View file

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