diff --git a/examples/typewriter/main.go b/examples/typewriter/main.go
index 820fb2cac88f0cac3c025b6405a445fee0cb33b9..d7691ff716de82704f1a4ac43aed475a25183e01 100644
--- a/examples/typewriter/main.go
+++ b/examples/typewriter/main.go
@@ -13,7 +13,6 @@ import (
 	"github.com/faiface/pixel/pixelgl"
 	"github.com/faiface/pixel/text"
 	"github.com/golang/freetype/truetype"
-	"github.com/pkg/profile"
 	"golang.org/x/image/colornames"
 	"golang.org/x/image/font"
 	"golang.org/x/image/font/gofont/gobold"
@@ -317,6 +316,5 @@ func run() {
 }
 
 func main() {
-	defer profile.Start(profile.MemProfile).Stop()
 	pixelgl.Run(run)
 }