QB64 info (please complete the following information):
It is present in the latest dev build (git a97311b)
OS is Debian Testing
Describe the bug
When using $NOPREFIX with $COLOR (and any of the values that append it, ie, $COLOR:32 or $COLOR:0), the QB64 IDE throws a Name already in use in line (4|21) of ./internal/support/color/color(0|32).bi error. If we remove $NOPREFIX this error goes away.
Expected behavior
Maybe change the $COLOR constants from C_<color> or something similar when using $NOPREFIX, so it doesn't collide with BLUE, etc.? There could be different bi's for both cases.
QB64 info (please complete the following information):
OS is Debian Testing
Describe the bug When using
$NOPREFIX
with$COLOR
(and any of the values that append it, ie,$COLOR:32
or$COLOR:0
), the QB64 IDE throws aName already in use in line (4|21) of ./internal/support/color/color(0|32).bi
error. If we remove$NOPREFIX
this error goes away.Expected behavior Maybe change the
$COLOR
constants fromC_<color>
or something similar when using$NOPREFIX
, so it doesn't collide withBLUE
, etc.? There could be different bi's for both cases.