summaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index 6d563e2..9615d98 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1,3 +1,4 @@
+#include <stdbool.h>
#include <stdio.h>
#include <raylib.h>
#include "scenes/scenes.h"
@@ -31,7 +32,7 @@ int main(void) {
return 1;
}
- if (!AddScene(CreatePuzzleCollectionScene(&el))) {
+ if (!AddScene(CreatePuzzleCollectionScene(&el, true))) {
printf("Failed to create a collection scene\n");
return 1;
}