summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp index 2d8adf0..77c4510 100644 --- a/src/main.cpp +++ b/src/main.cpp
@@ -608,6 +608,15 @@ int main(int, char**)
608 608
609 tick(game); 609 tick(game);
610 tick(game); 610 tick(game);
611
612 for (int y = -1; y <= 1; y++)
613 {
614 for (int x = -1; x <= 1; x++)
615 {
616 game.map.at(x,y).tile = Tile::Floor;
617 }
618 }
619
611 tick(game); 620 tick(game);
612 621
613 bool quit = false; 622 bool quit = false;