Fix compiling without PATCH_STITCHING defined

This commit is contained in:
Zack Middleton 2024-07-13 22:40:07 -05:00
parent e505e34d79
commit 15f5fe78ad
2 changed files with 5 additions and 5 deletions

View File

@ -306,13 +306,13 @@ srfGridMesh_t *R_CreateSurfaceGridMesh(int width, int height,
grid->heightLodError = /*ri.Hunk_Alloc*/ ri.Malloc( height * 4 );
Com_Memcpy( grid->heightLodError, errorTable[1], height * 4 );
#else
grid = ri.Hunk_Alloc( size );
grid = ri.Hunk_Alloc( size, h_low );
Com_Memset(grid, 0, size);
grid->widthLodError = ri.Hunk_Alloc( width * 4 );
grid->widthLodError = ri.Hunk_Alloc( width * 4, h_low );
Com_Memcpy( grid->widthLodError, errorTable[0], width * 4 );
grid->heightLodError = ri.Hunk_Alloc( height * 4 );
grid->heightLodError = ri.Hunk_Alloc( height * 4, h_low );
Com_Memcpy( grid->heightLodError, errorTable[1], height * 4 );
#endif

View File

@ -388,10 +388,10 @@ void R_CreateSurfaceGridMesh(srfBspSurface_t *grid, int width, int height,
grid->numVerts = (width * height);
grid->verts = ri.Malloc(grid->numVerts * sizeof(srfVert_t));
#else
grid->widthLodError = ri.Hunk_Alloc( width * 4 );
grid->widthLodError = ri.Hunk_Alloc( width * 4, h_low );
Com_Memcpy( grid->widthLodError, errorTable[0], width * 4 );
grid->heightLodError = ri.Hunk_Alloc( height * 4 );
grid->heightLodError = ri.Hunk_Alloc( height * 4, h_low );
Com_Memcpy( grid->heightLodError, errorTable[1], height * 4 );
grid->numIndexes = numIndexes;