We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e6431d commit ef7df2dCopy full SHA for ef7df2d
1 file changed
docs/library/windowpaint.md
@@ -30,7 +30,7 @@ Where
30
31
```
32
SUB windowPaint(x as uByte,y as uByte, width as uByte, height as uByte, inkCol as ubyte, paperCol as uByte, isBright as uByte, isFlash as uByte)
33
- paint(x,y,width,height,(isFlash<<7+isBright<<6+paperCol<<3+inkCol))
+ paint(x,y,width,height,(isFlash<<7) bOR (isBright<<6) bOR (paperCol<<3) bOR inkCol)
34
END SUB
35
36
0 commit comments