diff options
| author | physick <mynameisgennadiy@vk.com> | 2026-08-31 21:17:22 +0500 |
|---|---|---|
| committer | physick <mynameisgennadiy@vk.com> | 2026-08-31 21:17:22 +0500 |
| commit | 9b545255d4496903455c5dd49042c87e1a1f7af4 (patch) | |
| tree | fc3355947341636c5e3e01c1997c77a358fbe653 /src/main.c | |
| parent | e4b96cc66d8c4269661745ce187cb58c852542d3 (diff) | |
scroll in the puzzle selection scene
Diffstat (limited to 'src/main.c')
| -rw-r--r-- | src/main.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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; } |
