mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-25 03:00:46 +00:00
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:
parent
801845fa3b
commit
1a661b4d23
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue