diff --git a/game.js b/game.js index 0ebcea5..a35095e 100644 --- a/game.js +++ b/game.js @@ -706,7 +706,7 @@ function aboutScreen() { text("Money Printing Sim is my first ever attempt at creating a somewhat polished game. As I've always been drawn to games that involve calculations, data, stats, etc., I was inspired by incremental games the likes of Cookie Clicker and Clicker Heroes.", 650, 150, windowWidth, windowHeight); // loops through all text in the array and display them for (let i = 0; i < aboutText.length; i++) { - text(aboutText[i], 650, aboutTextPosY, windowWidth - 50, windowHeight - 50); + text(aboutText[i], 650, aboutTextPosY, windowWidth/1.07, windowHeight - 50); aboutTextPosY += 50; } textSize(24);