Fix some log.Fatal calls

This commit is contained in:
2024-10-23 23:47:55 +01:00
parent 5f7654d267
commit ac4675fa2c
5 changed files with 5 additions and 5 deletions

View File

@@ -76,7 +76,7 @@ func main() {
win, err := ui.NewWindow(env, "View Map "+*mapFile, *winX, *winY)
if err != nil {
log.Fatal("Couldn't create window: %v", err)
log.Fatalf("Couldn't create window: %v", err)
}
win.OnKeyUp(ebiten.KeyEnter, env.toggleAutoUpdate)