Fix clipshape bug reported by DeeperThought. Reason was absent-mindedness while coding :/

git-svn-id: https://svn.eduke32.com/eduke32@1777 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
helixhorned 2011-01-20 19:00:12 +00:00
parent 801845fa3b
commit 1a661b4d23

View file

@ -612,7 +612,7 @@ int32_t clipmapinfo_load(const char *filename)
if (wall[w].lotag > wall[w].hitag)
swapshort(&wall[w].lotag, &wall[w].hitag);
for (ii=wall[w].lotag; ii<MAXTILES; ii++)
for (ii=wall[w].lotag; ii<wall[w].hitag; ii++)
tempictoidx[ii] = numclipmaps;
}
else if (wall[w].lotag>0)