diff --git a/text/atlas.go b/text/atlas.go
index 67000cf5d6a59ecf3e2cfe257e5159f07b46e303..b7ddf43296c8e9e9e72cc5a440126b8aa73bb861 100644
--- a/text/atlas.go
+++ b/text/atlas.go
@@ -9,7 +9,6 @@ import (
 
 	"github.com/faiface/pixel"
 	"golang.org/x/image/font"
-	"golang.org/x/image/font/basicfont"
 	"golang.org/x/image/math/fixed"
 )
 
@@ -175,10 +174,6 @@ func (a *Atlas) DrawRune(prevR, r rune, dot pixel.Vec) (rect, frame, bounds pixe
 	return rect, glyph.Frame, bounds, dot
 }
 
-func new7x13Atlas(runeSets ...[]rune) *Atlas {
-	return NewAtlas(basicfont.Face7x13, runeSets...)
-}
-
 type fixedGlyph struct {
 	dot     fixed.Point26_6
 	frame   fixed.Rectangle26_6
diff --git a/text/text.go b/text/text.go
index 04354a6d1cca6e16344bc4a4181bb7ab00cba3a4..1247a8dafc311705309a87b737a4848a638693e9 100644
--- a/text/text.go
+++ b/text/text.go
@@ -7,6 +7,7 @@ import (
 	"unicode/utf8"
 
 	"github.com/faiface/pixel"
+	"golang.org/x/image/font/basicfont"
 )
 
 // ASCII is a set of all ASCII runes. These runes are codepoints from 32 to 127 inclusive.
@@ -17,7 +18,7 @@ func init() {
 	for i := range ASCII {
 		ASCII[i] = rune(32 + i)
 	}
-	Atlas7x13 = new7x13Atlas(ASCII)
+	Atlas7x13 = NewAtlas(basicfont.Face7x13, ASCII)
 }
 
 // RangeTable takes a *unicode.RangeTable and generates a set of runes contained within that