summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/game/game.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/game.cpp b/src/game/game.cpp
index ebd180d..eefbe02 100644
--- a/src/game/game.cpp
+++ b/src/game/game.cpp
@@ -75,7 +75,7 @@ public:
void initBoard(){
for(int i = 0; i < boardHeight; i++){
for(int j = 0; j < boardWidth; j++){
- bombmap[i][j] = rand() % 1;
+ bombmap[i][j] = rand() % 2;
}
}
}