diff --git a/CMakeLists.txt b/CMakeLists.txt index 2ade6a7..a67905e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -34,6 +34,8 @@ set(LEVELS lvl/5.kble lvl/6.kble lvl/7.kble + lvl/8.kble + lvl/9.kble lvl/end.kble ) diff --git a/lvl/8.kble b/lvl/8.kble new file mode 100644 index 0000000..af9c549 Binary files /dev/null and b/lvl/8.kble differ diff --git a/lvl/9.kble b/lvl/9.kble new file mode 100644 index 0000000..72b8f86 Binary files /dev/null and b/lvl/9.kble differ diff --git a/src/level.c b/src/level.c index a0a7606..70f50d5 100644 --- a/src/level.c +++ b/src/level.c @@ -10,10 +10,10 @@ static struct Level self; extern struct LevelBin lvl_0, lvl_1, lvl_2, lvl_3, lvl_4, lvl_5, lvl_6, lvl_7, - lvl_end; -static const struct LevelBin *levels[] = {&lvl_0, &lvl_1, &lvl_2, &lvl_3, - &lvl_4, &lvl_5, &lvl_6, &lvl_7, - &lvl_end, NULL}; + lvl_8, lvl_9, lvl_end; +static const struct LevelBin *levels[] = {&lvl_0, &lvl_1, &lvl_2, &lvl_3, + &lvl_4, &lvl_5, &lvl_6, &lvl_7, + &lvl_8, &lvl_9, &lvl_end, NULL}; void level_load(int id)