1
0
mirror of https://github.com/dschmenk/PLASMA.git synced 2024-06-09 10:29:35 +00:00

Leave even more room for 64K systems

This commit is contained in:
dschmenk 2024-02-14 13:20:08 -08:00
parent 2e4364f9c6
commit 0743eba40c
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -231,7 +231,7 @@ if not except(exit)
return return
fin fin
copysize = MAXBUFSIZE copysize = MAXBUFSIZE
while isult(heapavail, copysize + 256) while isult(heapavail, copysize + 4096) // Leave lots of room for recursion
copysize = copysize - 1024 copysize = copysize - 1024
loop loop
copyrel = heapalloc(copysize + 256) copyrel = heapalloc(copysize + 256)