From 09de5bf4558ad6239069d2aa229726d27bc4ae60 Mon Sep 17 00:00:00 2001 From: dbenavid Date: Tue, 5 Sep 2023 19:28:25 -0400 Subject: [PATCH] Cleanup on subtext. --- examples/splashmenu/scenes/splash.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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()) {