.cosmetic

This commit is contained in:
Zbigniew Rębacz 2023-10-28 21:30:08 +02:00
parent 21816d69e7
commit 12400ceedd
2 changed files with 3 additions and 3 deletions

View file

@ -23,7 +23,7 @@ struct RandomRectCtrl : public Ctrl {
int y = Random() % (sz.cy - length);
rect = Rect(x, y, x + length, y + length);
color = Color(Random() % 255, Random() % 255, Random() % 255);
color = Color(Random() % 256, Random() % 256, Random() % 256);
}
};