Actions
Bug #464
openIn Rain (n,l) =c, c is incorrectly limited to the range of 0 to 255, when it should be 0-$FFF for Amiga and 0-$FFFFFF for AOZ.
Start date:
09/03/2020
Due date:
% Done:
0%
Estimated time:
1:00 h
Affected version:
Description
Example:
Screen Open 0,320,256,32,Lowres
Cls 0
Set Rainbow 0,0,255,"","",""
Rainbow 0,0,0,255
For y=0 to 255
Rain(0,y) = Rnd($FFF)
Next y
Wait Key
The result is an illegal function call.
The result should be a rainbow with random colors.
Limiting it to Rnd($FF) will correct the function, but of course, will limit the color to shades of blue for both platforms.
Updated by Francois Lionet about 4 years ago
- Status changed from New to Resolved
Fixed, also fixed, short colors were not supported in Rainbows.
Updated by Brian Flanagan about 4 years ago
- Status changed from Resolved to Feedback
- Affected version changed from 0.9.9.4-RC1 to Beta RC3
Re-tested in Beta RC3.
Still getting illegal function call with any number larger than 255.
Perhaps the change hasn't been deployed yet?
Actions