diff options
Diffstat (limited to 'main.go')
-rw-r--r-- | main.go | 6 |
1 files changed, 1 insertions, 5 deletions
@@ -114,7 +114,6 @@ func main() { x = p.X - 1 default: ppos(22, 0, "...escape, escape!") - time.Sleep(2 * time.Second) return } case 'x': @@ -131,11 +130,9 @@ func main() { harddrop = true case 'q': ppos(22, 0, "...that was exciting!") - time.Sleep(2 * time.Second) return case 'Q': ppos(22, 0, "...never let an engineer pick the name of your software?") - time.Sleep(2 * time.Second) return } select { @@ -172,8 +169,7 @@ func main() { } if topout { - ppos(4, 5, " GAME OVER ") - time.Sleep(2 * time.Second) + ppos(4, 15, " GAME OVER ") return } } |