aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/maps/stage_2_start.bfm2
-rw-r--r--src/main.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/meta/maps/stage_2_start.bfm b/meta/maps/stage_2_start.bfm
index c03609f..ca380e2 100644
--- a/meta/maps/stage_2_start.bfm
+++ b/meta/maps/stage_2_start.bfm
@@ -1,3 +1,3 @@
BOSS 0 0
-ENEMIES 120 20
+ENEMIES 10 20
NEXT stage_1_1.bfm
diff --git a/src/main.cpp b/src/main.cpp
index aeff74e..f03e003 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -52,6 +52,7 @@ int main(void) {
if (IsKeyPressed(KEY_ENTER))
{
std::string s(path);
+ s += "/";
s += pick[nPick];
game = new Game(s);
gs = GAMEPLAY;
@@ -126,7 +127,6 @@ int main(void) {
DrawText(pick[n].c_str(), 400,
240 + (n * 40), 40, COOLPURPLE);
}
-
break ;
}
case (GAMEPLAY):