Selaa lähdekoodia

Missed a couple.

master
Ben Kurtovic 11 vuotta sitten
vanhempi
commit
8e46e50d33
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. +2
    -2
      src/Grid.java

+ 2
- 2
src/Grid.java Näytä tiedosto

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


Ladataan…
Peruuta
Tallenna