Skip to content

Commit

Permalink
fix: amend offset pause message (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Broderick-Westrope authored Aug 20, 2024
1 parent 4901603 commit d99f482
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions internal/tui/marathon/model.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,20 +17,21 @@ import (
"github.com/charmbracelet/lipgloss"
)

var pausedMsg = ` ____ __
const (
pausedMsg = ` ____ __
/ __ \____ ___ __________ ____/ /
/ /_/ / __ ^/ / / / ___/ _ \/ __ /
/ ____/ /_/ / /_/ (__ ) __/ /_/ /
/ ____/ /_/ / /_/ (__ ) __/ /_/ /
/_/ \__,_/\__,_/____/\___/\__,_/
Press PAUSE to continue or HOLD to exit.`

var gameOverMsg = ` ______ ____
gameOverMsg = ` ______ ____
/ ____/___ _____ ___ ___ / __ \_ _____ _____
/ / __/ __ ^/ __ ^__ \/ _ \ / / / / | / / _ \/ ___/
/ /_/ / /_/ / / / / / / __/ / /_/ /| |/ / __/ /
\____/\__,_/_/ /_/ /_/\___/ \____/ |___/\___/_/
Press EXIT or HOLD to continue.`
Press EXIT or HOLD to continue.`
)

var _ tea.Model = &Model{}

Expand Down

0 comments on commit d99f482

Please sign in to comment.