package game func quit(game *Game) { maybePanic := recover() game.screen.Fini() if maybePanic != nil { panic(maybePanic) } }