diff --git a/examples/splashmenu/scenes/splash.go b/examples/splashmenu/scenes/splash.go index 787bb45..b4796a4 100644 --- a/examples/splashmenu/scenes/splash.go +++ b/examples/splashmenu/scenes/splash.go @@ -10,7 +10,8 @@ import ( ) const ( - splashText = "schmoopysoft" + splashText = "schmoopysoft®" + splashSubtext = "\"how was the gravy\"\n- christorpher hollick" ) type Splash struct { @@ -53,7 +54,7 @@ func (s *Splash) Draw(screen *ebiten.Image) { y := s.Dimensions.Height / 2 text.Draw(screen, splashText, splashmenu.SplashFont.MegaTitle, x, y, color.White) - text.Draw(screen, "\"how was the gravy\"\n- christorpher hollick", splashmenu.SplashFont.Title, x, y+40, color.White) + text.Draw(screen, splashSubtext, splashmenu.SplashFont.Title, x, y+40, color.White) } func (s *Splash) SetEventHandler(event groovy.SceneEvent, f func()) {