Skip to content

Commit 990efe4

Browse files
committed
Expand text box limit from 200 to 10,000
Prevents the program from crashing when reaching layer 200 due to running out of free text boxes. Fixes #92. It will still crash on layer ~10,000, so a proper fix must still be applied (for example, preventing the user from scrolling at all beyond the 10,000th layer).
1 parent cc1e544 commit 990efe4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/control_create/control_create.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ section_exists = 0
7878
section_start = 0
7979
section_end = 0
8080
timeline_pressa = -1
81-
for (a = 0; a < 200; a += 1) text_exists[a] = 0
81+
for (a = 0; a < 10000; a += 1) text_exists[a] = 0
8282

8383
// Note blocks
8484
starta = 0

0 commit comments

Comments
 (0)