* contrib/libct/color.prg

! Fix, the color string was inverted.
This commit is contained in:
Walter Negro
2002-05-30 03:51:35 +00:00
parent 72fa84b903
commit e8691ed4d2

View File

@@ -112,8 +112,8 @@ FUNCTION NTOCOLOR( nColor, lChar )
if valtype( nColor ) == "N" .and. nColor > 0 .and. nColor < 256
nColorFore = INT( nColor / 16 )
nColorBack = nColor % 16
nColorFore = nColor % 16
nColorBack = INT( nColor / 16 )
if !lChar