Ver código fonte

Missed a couple.

master
Ben Kurtovic 11 anos atrás
pai
commit
8e46e50d33
1 arquivos alterados com 2 adições e 2 exclusões
  1. +2
    -2
      src/Grid.java

+ 2
- 2
src/Grid.java Ver arquivo

@@ -10,10 +10,10 @@ public class Grid {
}

public Grid(int x, int y) {
_grid = new Patch[x][y];
_grid = new Patch[y][x];
for (int i = 0; i < x; i++) {
for (int j = 0; j < y; j++) {
_grid[i][j] = new Patch(this, i, j, 0, "");
_grid[j][i] = new Patch(this, i, j, 0, "");
}
}
}


Carregando…
Cancelar
Salvar