mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- fixed bad array of arrays access in sector splitting code.
This commit is contained in:
parent
c80c2e7a6c
commit
e99567cd70
1 changed files with 1 additions and 1 deletions
|
@ -206,7 +206,7 @@ void hw_SplitSector(int sectnum, int start, int end)
|
||||||
}
|
}
|
||||||
if (foundstart && foundend)
|
if (foundstart && foundend)
|
||||||
{
|
{
|
||||||
sectionspersector->Delete(i);
|
sectionspersector[sectnum].Delete(i);
|
||||||
SplitSection(sect, start, end);
|
SplitSection(sect, start, end);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue