mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-30 16:58:40 -04:00
fix for mysterious assertion failure in MSVS 2010, from community member swx.
This commit is contained in:
parent
e2093b1c2d
commit
40b8521245
@ -359,7 +359,7 @@ cut_sheet(int first_row_id, int do_mate, const EggVertexPool *vertex_pool) {
|
|||||||
not_any = true;
|
not_any = true;
|
||||||
|
|
||||||
ei = _edges.begin();
|
ei = _edges.begin();
|
||||||
while (ei != _edges.end() && not_any) {
|
while (not_any && ei != _edges.end()) {
|
||||||
EggMesherEdge::Strips &strips = (*ei)->_strips;
|
EggMesherEdge::Strips &strips = (*ei)->_strips;
|
||||||
si = strips.begin();
|
si = strips.begin();
|
||||||
while (si != strips.end() && not_any) {
|
while (si != strips.end() && not_any) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user