main #21

Merged
Patrick_Pluto merged 2 commits from sageTheDm/pages:main into main 2025-01-05 00:14:19 +01:00
Showing only changes of commit ece497e2cf - Show all commits

View file

@ -139,10 +139,10 @@ class Minesweeper {
}
drawField() {
canvas.width = window.innerWidth;
canvas.height = window.innerHeight;
const squareWidth = canvas.width / (this.field.length + 4);
const squareHeight = canvas.height / (this.field[0].length + 4);
const squareWidth = window.innerWidth / (this.field.length + 4);
const squareHeight = window.innerHeight / (this.field[0].length + 4);
canvas.width = squareWidth * this.field.length;
canvas.height = squareHeight * this.field[0].length;
squareHeight > squareWidth ? this.size = squareWidth : this.size = squareHeight;
const offsetX = (canvas.width - (this.field.length * this.size)) / 2;