Update 'main.go'
All checks were successful
rgb/pipeline/head This commit looks good

This commit is contained in:
2022-12-17 06:07:22 +00:00
parent 31bfe0c0ed
commit 7b1f555128

View File

@@ -122,7 +122,7 @@ func (a *Animation) Next() (image.Image, <-chan time.Time, error) {
} else {
a.ctx.DrawImageAnchored(imaging.FlipH(a.image[a.updown]), a.position.X, a.position.Y, 0.5, 0.5)
}
a.ctx.DrawString("mario", a.position.X, a.position.Y)
a.ctx.DrawString("mario", 5, 5)
return a.ctx.Image(), time.After(time.Millisecond * 50), nil
}