mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fix for assert in VS2015 debug builds (and likely others too). ( Expression: vector subscript out of range )
This commit is contained in:
parent
7007c803ce
commit
7375b97688
1 changed files with 1 additions and 1 deletions
|
@ -293,7 +293,7 @@ namespace Forsyth
|
||||||
|
|
||||||
assert(vertexData.activeFaceListSize > 0);
|
assert(vertexData.activeFaceListSize > 0);
|
||||||
uint* begin = &activeFaceList[vertexData.activeFaceListStart];
|
uint* begin = &activeFaceList[vertexData.activeFaceListStart];
|
||||||
uint* end = &activeFaceList[vertexData.activeFaceListStart + vertexData.activeFaceListSize];
|
uint* end = &(activeFaceList[vertexData.activeFaceListStart + vertexData.activeFaceListSize - 1]) + 1;
|
||||||
uint* it = std::find(begin, end, bestFace);
|
uint* it = std::find(begin, end, bestFace);
|
||||||
assert(it != end);
|
assert(it != end);
|
||||||
std::swap(*it, *(end-1));
|
std::swap(*it, *(end-1));
|
||||||
|
|
Loading…
Reference in a new issue