examples/set: Use color.RGBA

This commit is contained in:
Hajime Hoshi 2019-01-14 20:04:58 +09:00
parent 67ce6c57c4
commit ea29637fda

View File

@ -46,7 +46,7 @@ func update(screen *ebiten.Image) error {
w, h := offscreen.Size()
x := rand.Intn(w)
y := rand.Intn(h)
c := color.NRGBA{
c := color.RGBA{
byte(rand.Intn(256)),
byte(rand.Intn(256)),
byte(rand.Intn(256)),