fixed readme

This commit is contained in:
Lorenzo Bianchi 2023-05-15 16:24:10 +02:00
parent 073fcc839b
commit 89435cd0b1
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,3 @@
# Elaborato_SO
Lore super iper ghei++plus
Fether super iper ghei++plus

View File

@ -45,5 +45,14 @@ int checkWin(tile_t *board, int x, int y, int rows, int collums) {
}
}
// manca seconda diagonal
for (i=0; i<4; i++) {
if (y + i - 3 >= 0 && y + i < rows && x + i - 3 >= 0 && x + i < collums) {
if (board[x - 3 + i + (y + i - 3) * collums] == board[x + i + (y + i) * collums] &&
board[x - 2 + i + (y + i - 2) * collums] == board[x + i + (y + i) * collums] &&
board[x - 1 + i + (y + i - 1) * collums] == board[x + i + (y + i) * collums]) {
return current;
}
}
}
}