Rename examples/fill -> flood

This commit is contained in:
Hajime Hoshi 2018-01-19 03:15:34 +09:00
parent 5f0471273d
commit efdb845328

View File

@ -88,7 +88,7 @@ func main() {
if err != nil {
log.Fatal(err)
}
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Fill with solid colors (Ebiten Demo)"); err != nil {
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Flood fill with solid colors (Ebiten Demo)"); err != nil {
log.Fatal(err)
}
}