rgb / black

Started by steve64, August 27, 2021, 21:48:49

Previous topic - Next topic

steve64

It seems that, at least on Windows, to clear the screen to true black background I have to use a statement
like the following one, where black is rgb(1,1,1) instead of rgb(0,0,0):

color 15, rgb(1,1,1)
cls

Is it confirmed? A kind of bug?


chrisws

I think that's something I've already fixed. I need to make another release soon.

color 15, rgb(1,1,1)
cls
p1 = point(0,0)
color 15, 0
cls
p2 = point(0,0)
print p1
print p2

in this case p2==0