Fix console styles
This commit is contained in:
parent
ca606c6ec1
commit
d522104ad0
1 changed files with 9 additions and 9 deletions
18
libnxGen.cfg
18
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
|
||||
|
||||
"""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue