summaryrefslogtreecommitdiff
path: root/Tile.h
diff options
context:
space:
mode:
authorDaniel Jones <admin@danieljon.es>2020-06-14 21:57:47 +0930
committerDaniel Jones <admin@danieljon.es>2020-06-14 21:57:47 +0930
commit3a41ff521bd1e95a85bf93ac77d69108a1d9c0c5 (patch)
treeb018937e0e6b768db1f84704efda9f1004309d5a /Tile.h
parent971db58ef48db64151a31d4857104ede69475996 (diff)
downloadfoxminesweeper-3a41ff521bd1e95a85bf93ac77d69108a1d9c0c5.tar.gz
foxminesweeper-3a41ff521bd1e95a85bf93ac77d69108a1d9c0c5.zip
work on getting new game working
new games work only if the width and height are the same values
Diffstat (limited to 'Tile.h')
-rw-r--r--Tile.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Tile.h b/Tile.h
index 371e121..d151ae7 100644
--- a/Tile.h
+++ b/Tile.h
@@ -44,7 +44,7 @@ class Tile
void set_neighbor_mine_count(int count) { this->neighbor_mine_count = count; };
Tile *get_neighbor(int i);
- Tile *neighbors[8]; // one day make private with getters/setters
+ Tile *neighbors[8] = {0}; // one day make private with getters/setters
private:
void set_flags(enum STATE flags) { this->flags = flags; };
int x;