diff options
Diffstat (limited to 'Field.cpp')
-rw-r--r-- | Field.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ Cell& Field::getCell(Coordinates c) { }
void Field::init(uint width, uint height) {
- // m_fieldCells.assign(width*height, EMPTY_CELL);
+ // m_fieldCells.assign(width*height, EMPTY_CELL);
m_width = width;
m_height = height;
m_fieldCells.clear();
|