diff --git a/text/atlas.go b/text/atlas.go
index 9624ebeb17af56d14486285030eb75cc953c7dd3..a8b7d8e7e62b4672faa13a4513a8584c1fb4bcd1 100644
--- a/text/atlas.go
+++ b/text/atlas.go
@@ -11,7 +11,7 @@ import (
 )
 
 type Glyph struct {
-	Orig    pixel.Vec
+	Dot     pixel.Vec
 	Frame   pixel.Rect
 	Advance float64
 }
@@ -152,7 +152,7 @@ func (a *Atlas) DrawRune(prevR, r rune, dot pixel.Vec) (rect, frame, bounds pixe
 
 	glyph := a.Glyph(r)
 
-	rect = glyph.Frame.Moved(dot - glyph.Orig)
+	rect = glyph.Frame.Moved(dot - glyph.Dot)
 	bounds = rect
 
 	if bounds.W()*bounds.H() != 0 {