1
0
Fork 0
mirror of https://github.com/ganelson/inform.git synced 2024-06-01 07:48:35 +03:00

Raised MAX_BLOCKS_ALLOWED to 15000 on retrospective builds

This commit is contained in:
Graham Nelson 2022-03-31 12:31:04 +01:00
parent d0b83c2686
commit ca2f51b347
3 changed files with 3 additions and 3 deletions

View file

@ -184,7 +184,7 @@
#define NO_MEMORY_TYPES 163 /* must be 1 more than the highest |_MT| constant above */
#define SAFETY_MARGIN 32
#define BLANK_END_SIZE 128
#define MAX_BLOCKS_ALLOWED 10000
#define MAX_BLOCKS_ALLOWED 15000
#define MEMORY_GRANULARITY 200*1024*CPU_WORDSIZE_MULTIPLIER /* which must be divisible by 1024 */
#define INTEGRITY_NUMBER 0x12345678 /* a value unlikely to be in memory just by chance */
#define CREATE(type_name) (allocate_##type_name())

View file

@ -187,7 +187,7 @@
#define NO_MEMORY_TYPES 165 /* must be 1 more than the highest |_MT| constant above */
#define SAFETY_MARGIN 32
#define BLANK_END_SIZE 128
#define MAX_BLOCKS_ALLOWED 10000
#define MAX_BLOCKS_ALLOWED 15000
#define MEMORY_GRANULARITY 200*1024*CPU_WORDSIZE_MULTIPLIER /* which must be divisible by 1024 */
#define INTEGRITY_NUMBER 0x12345678 /* a value unlikely to be in memory just by chance */
#define CREATE(type_name) (allocate_##type_name())

View file

@ -180,7 +180,7 @@
#define NO_MEMORY_TYPES 166 /* must be 1 more than the highest |_MT| constant above */
#define SAFETY_MARGIN 32
#define BLANK_END_SIZE 128
#define MAX_BLOCKS_ALLOWED 10000
#define MAX_BLOCKS_ALLOWED 15000
#define MEMORY_GRANULARITY 200*1024*CPU_WORDSIZE_MULTIPLIER /* which must be divisible by 1024 */
#define INTEGRITY_NUMBER 0x12345678 /* a value unlikely to be in memory just by chance */
#define CREATE(type_name) (allocate_##type_name())