- changed line_t's sidenum into sidedef pointers.

SVN r1801 (trunk)
This commit is contained in:
Christoph Oelckers 2009-09-06 20:45:56 +00:00
commit 14a42bbada
28 changed files with 211 additions and 202 deletions

View file

@ -371,10 +371,10 @@ void P_SerializeWorld (FArchive &arc)
for (j = 0; j < 2; j++)
{
if (li->sidenum[j] == NO_SIDE)
if (li->sidedef[j] == NULL)
continue;
side_t *si = &sides[li->sidenum[j]];
side_t *si = li->sidedef[j];
arc << si->textures[side_t::top]
<< si->textures[side_t::mid]
<< si->textures[side_t::bottom]