Explorar el Código

Missed a couple.

master
Ben Kurtovic hace 11 años
padre
commit
8e46e50d33
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      src/Grid.java

+ 2
- 2
src/Grid.java Ver fichero

@@ -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, "");
}
}
}


Cargando…
Cancelar
Guardar