This commit is contained in:
UnknownShadow200 2025-05-11 10:00:57 +10:00
parent 350fcdae1e
commit 3cf0c04831
2 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ static void OutputChunkPartsMeta(int x, int y, int z, struct ChunkInfo* info) {
}
void Builder_MakeChunk(struct ChunkInfo* info) {
#ifdef CC_BUILD_MAXSTACK <= (32 * 1024)
#if CC_BUILD_MAXSTACK <= (32 * 1024)
BlockID* chunk = (cc_uint8*)temp_mem;
cc_uint8* counts = (cc_uint8*)temp_mem + EXTCHUNK_SIZE_3;
#else

View File

@ -585,7 +585,7 @@ typedef cc_uint8 cc_bool;
#endif
#ifndef CC_BUILD_MAXSTACK
#define CC_BUILD_MAXSTACK (128 * 1024)
#define CC_BUILD_MAXSTACK (256 * 1024)
#endif
#ifdef EXTENDED_BLOCKS