From 8014c1c34eae4024024a27d9f3068ecfb7a9b3f5 Mon Sep 17 00:00:00 2001 From: Lucas Leung <66652566+mrworldwide1@users.noreply.github.com> Date: Wed, 5 Jul 2023 23:48:20 -0400 Subject: [PATCH] rounding --- script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script.js b/script.js index edfb302..f8526c3 100644 --- a/script.js +++ b/script.js @@ -692,7 +692,7 @@ function statsScreen() { textSize(32); textFont(regularFont); image(statsIcon, windowWidth/2, 100, 150, 150); - text("Playtime (minutes): $ " + round(millis()/60000), windowWidth/2, 250, windowWidth, windowHeight); + text("Playtime (minutes): " + millis()/60000, windowWidth/2, 250, windowWidth, windowHeight); text(`Money per print: $${moneyPerPrint}`, windowWidth/2, 300, windowWidth, windowHeight); text(`Total prints: ${totalPrints}`, windowWidth/2, 350, windowWidth, windowHeight); text(`Banknote speed: ${bankNoteSpeed}`, 650, 400, windowWidth, windowHeight);