fmt
This commit is contained in:
parent
53e80633aa
commit
52b546216e
2
main.cpp
2
main.cpp
@ -213,7 +213,7 @@ void deallocBoard(char **board, int x) {
|
|||||||
void printBoard(char **board, int x, int y) {
|
void printBoard(char **board, int x, int y) {
|
||||||
int boardX = x + 2;
|
int boardX = x + 2;
|
||||||
int boardY = y + 2;
|
int boardY = y + 2;
|
||||||
myVec<myVec<char>> ans(boardX);
|
myVec<myVec<char> > ans(boardX);
|
||||||
|
|
||||||
for (int i = 0; i < boardX; ++i) {
|
for (int i = 0; i < boardX; ++i) {
|
||||||
for (int j = 0; j < boardY; ++j) {
|
for (int j = 0; j < boardY; ++j) {
|
||||||
|
Loading…
Reference in New Issue
Block a user