Fix Lua syntax errors caused by bad regex replacement

This commit is contained in:
Adolfo Reyna
2026-02-13 15:31:21 -05:00
parent 034867d2a7
commit 06f5976865
8 changed files with 49 additions and 49 deletions

View File

@@ -73,7 +73,7 @@ function draw()
if game.vars.state == STATE_PAUSED then
renderer.text_scaled(10, 10, "PAUSED - Tap to start", true, 2)
else
renderer.text_scaled(10, 10, "Frames: " .. tostring(game.vars.frame_count, 2), true)
renderer.text_scaled(10, 10, "Frames: " .. tostring(game.vars.frame_count), true, 2)
renderer.text_scaled(10, 25, "Tap to pause", true, 2)
end