Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implementing $INCLUDEONCE #448

Merged
merged 7 commits into from
Feb 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions internal/support/color/color0.bi
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
'$COLOR:0
'Color constants for text mode.

$INCLUDEONCE

CONST Black~%% = 0
CONST Blue~%% = 1
CONST Green~%% = 2
Expand Down
6 changes: 5 additions & 1 deletion internal/support/color/color0_noprefix.bi
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
'$COLOR:0
'Color constants for text mode, when using $NOPREFIX
'Color constants for text mode, when using $NOPREFIX.

$INCLUDEONCE

CONST Black~%% = 0
CONST NP_Blue~%% = 1
CONST NP_Green~%% = 2
Expand All @@ -17,3 +20,4 @@ CONST LightMagenta~%% = 13
CONST Yellow~%% = 14
CONST BrightWhite~%% = 15
CONST NP_Blink~%% = 16

4 changes: 4 additions & 0 deletions internal/support/color/color32.bi
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
'$COLOR:32
'Color constants for 32bit mode, based on HTML color names.

$INCLUDEONCE

CONST AliceBlue~& = 4293982463
CONST Almond~& = 4293910221
CONST AntiqueBrass~& = 4291663221
Expand Down Expand Up @@ -270,3 +273,4 @@ CONST Wisteria~& = 4291667166
CONST Yellow~& = 4294967040
CONST YellowGreen~& = 4288335154
CONST YellowOrange~& = 4294946370

Loading
Loading