aboutsummaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.cpp b/src/main.cpp
index b4525c2..74b1adf 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -13,7 +13,7 @@
gameState gs = TITLE;
-Game* game = new Game;
+Game* game = new Game("../meta/maps/stage_1_start.bfm");
int main(void) {
initWindow();
@@ -41,7 +41,7 @@ int main(void) {
{
gs = TITLE;
delete game;
- game = new Game;
+ game = new Game("../meta/maps/stage_1_start.bfm");
}
break ;
}