mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
Fix (still not enabled) undo/redo code compilation.
Also include one comment about a currently failing assertion there. git-svn-id: https://svn.eduke32.com/eduke32@2482 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
fbf0b9ea4f
commit
76de780d8b
1 changed files with 6 additions and 3 deletions
|
@ -460,7 +460,7 @@ void create_map_snapshot(void)
|
|||
|
||||
mapstate->numsectors = numsectors;
|
||||
mapstate->numwalls = numwalls;
|
||||
mapstate->numsprites = numsprites;
|
||||
mapstate->numsprites = Numsprites;
|
||||
|
||||
tempcrc = crc32once((uint8_t *)§or[0],sizeof(sectortype) * numsectors);
|
||||
|
||||
|
@ -519,8 +519,9 @@ void create_map_snapshot(void)
|
|||
else
|
||||
{
|
||||
int32_t i = 0;
|
||||
spritetype *tspri = (spritetype *)Bcalloc(1, sizeof(spritetype) * Numsprites + 1),
|
||||
*spri = &tspri[0];
|
||||
spritetype *tspri = (spritetype *)Bcalloc(1, sizeof(spritetype) * Numsprites + 1);
|
||||
spritetype *spri = tspri;
|
||||
|
||||
mapstate->sprites = (spritetype *)Bcalloc(1, sizeof(spritetype) * Numsprites + QADDNSZ);
|
||||
|
||||
for (j=0; j<MAXSPRITES && i < Numsprites; j++)
|
||||
|
@ -621,6 +622,8 @@ int32_t map_undoredo(int32_t dir)
|
|||
insertsprite(sprite[i].sectnum,sprite[i].statnum);
|
||||
}
|
||||
|
||||
// XXX: this fails currently! the decompressed sprites have
|
||||
// .statnum==MAXSTATUS and .sectnum==MAXSECTORS. WTF?!
|
||||
assert(Numsprites == mapstate->numsprites);
|
||||
|
||||
#ifdef POLYMER
|
||||
|
|
Loading…
Reference in a new issue