Hyphen over colon in balls/strikes

This commit is contained in:
Sage Vaillancourt 2025-02-07 00:47:54 -05:00
parent 16fde510ac
commit 9678db167f
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ end
function drawBallsAndStrikes(x, y, balls, strikes) function drawBallsAndStrikes(x, y, balls, strikes)
local gfx = playdate.graphics local gfx = playdate.graphics
print("" .. balls .. ":" .. strikes) print("" .. balls .. " - " .. strikes)
gfx.setColor(gfx.kColorBlack) gfx.setColor(gfx.kColorBlack)
gfx.fillRect(x, y, 20, ScoreboardHeight) gfx.fillRect(x, y, 20, ScoreboardHeight)
end end