From e6c35dbedaa21ad4509e000d3a00fe8b3dd759c5 Mon Sep 17 00:00:00 2001 From: Kistaro Windrider Date: Sun, 1 Jan 2023 12:53:16 -0800 Subject: [PATCH] Use fmt on title screen. --- chameleonic.p8 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chameleonic.p8 b/chameleonic.p8 index ce2645e..bc39554 100644 --- a/chameleonic.p8 +++ b/chameleonic.p8 @@ -302,7 +302,7 @@ function title:draw() print("pyrex",32,73,7) print("[nyeogmi]",62,73,7) print("kistaro",32,79,7) - local lvlstr = "⬅️ "..start_level.." ➡️" + local lvlstr = fmt("⬅️ %v ➡️",start_level) print(lvlstr,50,91,1) print(lvlstr,51,90,blinkcol) end