My Raspberry Pi displays cyan color when I use my white font. If I do a drawrect with RGB() to set the color, I get dark blue text instead, no matter what color I use in the RGB. Is the raspberry pi code finished or is there still things to fix?
SETCURRENTDIR("Media")
LOADFONT "font.png", 1
SETFONT 1
GLOBAL count = 0
GLOBAL mx%, my%, b1%, b2%
WHILE KEY(1) = 0 AND b1 = 0
MOUSESTATE mx, my, b1, b2
DRAWRECT 250,270, 49,49, RGB(255,0,255)
PRINT "f00 ff0 0f0 0ff 00f f0f", 0, 320, 1
PRINT "Count "+count, 100,150, 0
PRINT "X", mx, my
INC count
SHOWSCREEN
WEND
PS: To run the bin files on raspbian you need to remove the ".bin" from the filename and make it executable by rightclicking and set the executable flags.