mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
HPL1: fix incorrect iterator comparison
This commit is contained in:
parent
901b9dcc57
commit
d12e5daf68
@ -253,9 +253,9 @@ void cAStarHandler::AddOpenNode(cAINode *apAINode, cAStarNode *apParent, float a
|
||||
return;
|
||||
}
|
||||
|
||||
// Try to add it to the open list
|
||||
// Add it if it wasn't already inserted
|
||||
const auto test = m_setOpenList.find(pNode);
|
||||
if (test == m_setOpenList.end()) {
|
||||
if (test != m_setOpenList.end()) {
|
||||
hplDelete(pNode);
|
||||
return;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user