examples/camera: fix window title (#2564)

This commit is contained in:
quasilyte 2023-02-06 12:31:23 +04:00 committed by GitHub
parent 1277909998
commit ce36527d16
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -254,7 +254,7 @@ func main() {
g.world = ebiten.NewImage(worldWidth, worldHeight)
ebiten.SetWindowSize(screenWidth, screenHeight)
ebiten.SetWindowTitle("Tiles (Ebitengine Demo)")
ebiten.SetWindowTitle("Camera (Ebitengine Demo)")
if err := ebiten.RunGame(g); err != nil {
log.Fatal(err)
}