Anyone else have problems with DRAWRECT on Raspberry Pi? Any time I use DRAWRECT with another color than RGB(255,255,255), the font color changes to dark blue (looks like RGB(0,0,255) mabe)
I'm using 12.001 and 11.414, both having the same problem.
Also it takes about 10-12 seconds to get back to the desktop after quitting. Is this normal? Also feels like it takes longer and longer if you keep the program running a while before quitting. Left it running for 10 minutes before quitting and then I had to SSH in and kill the process after waiting two minutes to return to desktop.
Raspberry Pi model B, running Raspbian latest version.
The code: Images are just a simple white font with large letters and a simple png with colors.
SETCURRENTDIR("Media") // go to media files
LOADFONT "font.png", 1
LOADSPRITE "basic.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 50,270, 49,49, RGB(255,255,255) // works
// DRAWRECT 0,270, 49,49, RGB(255,0,255) // Makes everything blue
DRAWSPRITE 1, 100,100
PRINT "Count "+count, 100,150, 0
PRINT "X", mx, my
INC count
SHOWSCREEN
WEND