Skip to content

Commit

Permalink
hardcode less values
Browse files Browse the repository at this point in the history
  • Loading branch information
mrworldwide1 committed Jul 31, 2023
1 parent adc3f95 commit 84f15b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion game.js
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ function aboutScreen() {
function statsScreen() {
textSize(32);
textFont(regularFont);
image(statsIcon, windowWidth / 2, 100, 150, 150);
image(statsIcon, windowWidth / 2, windowHeight / 7, 150, 150);
text("Playtime (minutes): " + round(millis() / 60000, 1), windowWidth / 2, 250, windowWidth, windowHeight);
text(`Money per print: $${moneyPerPrint}`, windowWidth / 2, 300, windowWidth, windowHeight);
text(`Total prints: ${totalPrints}`, windowWidth / 2, 350, windowWidth, windowHeight);
Expand Down

0 comments on commit 84f15b9

Please sign in to comment.